using DefaultNamespace;
using MotionFramework;
using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
public class SetOrderValue : MonoBehaviour
{
///
/// تلبً؟ْ
///
private TMP_InputField inputFieldtext;
void Start()
{
inputFieldtext = GetComponent();
if (MotionEngine.GetModule().GetTaskBookValueByMapping(transform.parent.name) != "")
{
inputFieldtext.text = MotionEngine.GetModule().GetTaskBookValueByMapping(transform.parent.name);
}
else
{
}
}
void Update()
{
}
}