當前位置: 首頁>>代碼示例>>C#>>正文


C# ActionData.Store方法代碼示例

本文整理匯總了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();
    }
開發者ID:chemming,項目名稱:SRL_1,代碼行數:25,代碼來源:PathDraw.cs


注:本文中的ActionData.Store方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。