本文整理匯總了C#中ActionData.Store方法的典型用法代碼示例。如果您正苦於以下問題:C# ActionData.Store方法的具體用法?C# ActionData.Store怎麽用?C# ActionData.Store使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ActionData
的用法示例。
在下文中一共展示了ActionData.Store方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: SaveData
void SaveData()
{
Vector3 posAfter = transform.position;
Quaternion orientAfter = transform.rotation;
if (posBefore == new Vector3(0,0,0))
posBefore = posAfter;
if (orientBefore == new Quaternion(0,0,0,0))
orientBefore = orientAfter;
string itemType = "none";
if(this.selectedItem != null)
{
itemType = selectedItem.GetComponent<ItemThink>().param_weight;
}
ActionData act = new ActionData(param_robotType,itemType,posBefore,posAfter,orientBefore,orientAfter,iteration);
act.AddPosition("obstacle",FindClosestItem("obstacle").transform.position);
if(FindClosestItem("robot") != null)
act.AddPosition("robot",FindClosestItem("robot").transform.position);
act.AddPosition("goal",FindClosestItem("goal").transform.position);
if(FindClosestItem("item") != null)
act.AddPosition("item",FindClosestItem("item").transform.position);
if(selectedItem != null)
act.AddPosition("selectedItem",selectedItem.gameObject.transform.position);
act.Store();
}