コード例 #1
0
 public AddClothAction(ClothModelHandler handler, Vector3 pos)
 {
     position          = pos;
     clothModelHandler = handler;
 }
コード例 #2
0
ファイル: CopyClothAction.cs プロジェクト: AFreu/Vibbi
 public CopyClothAction(ClothModelHandler handler, GameObject cloth, Vector3 pos)
 {
     clothModel        = cloth;
     position          = pos;
     clothModelHandler = handler;
 }
コード例 #3
0
ファイル: RemoveClothAction.cs プロジェクト: AFreu/Vibbi
 public RemoveClothAction(ClothModelHandler handler, GameObject cloth)
 {
     Debug.Log("Creating CopyClothAction");
     clothModel        = cloth;
     clothModelHandler = handler;
 }
コード例 #4
0
ファイル: ClothModelBehaviour.cs プロジェクト: AFreu/Vibbi
 void Start()
 {
     clothModelHandler = GetComponentInParent <ClothModelHandler> ();
 }