コード例 #1
0
ファイル: LNFrameAction.cs プロジェクト: zx8326123/LGame
        public static LNFrameAction Action(LNFrameStruct fs)
        {
            LNFrameAction action = new LNFrameAction();

            action._fs = fs;
            return(action);
        }
コード例 #2
0
ファイル: LNFrameAction.cs プロジェクト: zx8326123/LGame
        public static LNFrameAction Action(string aName, int idx)
        {
            LNFrameAction action = new LNFrameAction();

            action._animName = aName;
            action._index    = idx;
            return(action);
        }
コード例 #3
0
ファイル: LNFrameAction.cs プロジェクト: 207h2Flogintvg/LGame
		public static LNFrameAction Action(LNFrameStruct fs) {
			LNFrameAction action = new LNFrameAction();
			action._fs = fs;
			return action;
		}
コード例 #4
0
ファイル: LNFrameAction.cs プロジェクト: 207h2Flogintvg/LGame
		public static LNFrameAction Action(string aName, int idx) {
			LNFrameAction action = new LNFrameAction();
			action._animName = aName;
			action._index = idx;
			return action;
		}