Beispiel #1
0
        /// 敵の登録
        public void EntryAddWall(int TexId, Vector3 pos1, Vector3 pos2)
        {
            ActorChWall actorCh = new ActorChWall(TexId, pos1, pos2);

            actorCh.Init();
            actorCh.Start();

            actorChList.Add(actorCh);

            SetPlace((actorChList.Count - 1), 0.0f, (pos1 + pos2) / 2);
        }
Beispiel #2
0
        /// 敵の登録
        public void EntryAddWall( int TexId, Vector3 pos1 ,Vector3 pos2 )
        {
            ActorChWall actorCh = new ActorChWall(TexId ,pos1 ,pos2);
            actorCh.Init();
            actorCh.Start();

            actorChList.Add( actorCh );

            SetPlace( (actorChList.Count-1), 0.0f, (pos1+pos2)/2 );
        }