コード例 #1
0
/// public メソッド
///---------------------------------------------------------------------------

        /// 初期化
        public void Init()
        {
            calCollMove = new ActorUnitCollMove();
            calCollMove.Init();
            calCollGrav = new ActorUnitCollGravity();
            calCollGrav.Init();
        }
コード例 #2
0
/// 継承メソッド
///---------------------------------------------------------------------------

        /// 初期化
        public override bool Init()
        {
            moveCollMgr = new GameActorCollManager();
            moveCollMgr.Init();

            interfereCntr = new GameActorContainer();
            interfereCntr.Init();

            calCollMove = new ActorUnitCollMove();
            calCollMove.Init();

            EventCntr = new GameActorEventContainer();
            EventCntr.Init();

            return(DoInit());
        }
コード例 #3
0
        /// 継承メソッド
        ///---------------------------------------------------------------------------
        /// 初期化
        public override bool Init()
        {
            moveCollMgr = new GameActorCollManager();
            moveCollMgr.Init();

            interfereCntr = new GameActorContainer();
            interfereCntr.Init();

            calCollMove    = new ActorUnitCollMove();
            calCollMove.Init();

            EventCntr = new GameActorEventContainer();
            EventCntr.Init();

            return( DoInit() );
        }
コード例 #4
0
 /// public メソッド
 ///---------------------------------------------------------------------------
 /// 初期化
 public void Init()
 {
     calCollMove    = new ActorUnitCollMove();
     calCollMove.Init();
     calCollGrav    = new ActorUnitCollGravity();
     calCollGrav.Init();
 }