コード例 #1
0
ファイル: Creator.cs プロジェクト: gendalf90/WhenGunsSpeak
 private void Create(CreateSoldierCommand command)
 {
     InitializeCommand(command);
     CreateSoldier();
     BindHead();
     BindBody();
     BindLegs();
     SetGround();
     SetMotion();
     SetNetwork();
     SetRotation();
     //BindWeapon();
     NotifyThatCreated();
 }
コード例 #2
0
ファイル: Creator.cs プロジェクト: gendalf90/WhenGunsSpeak
 private void InitializeCommand(CreateSoldierCommand command)
 {
     session = command.Session;
 }