はじめに
この記事ではTeddyで描いた絵をモデルに取り付ける方法を紹介します。
TeddyRuntimeDemo.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 |
using UnityEngine; using UnityEngine.EventSystems; using System; using System.Linq; using System.Collections; //List用 using System.Collections.Generic; using Teddy; namespace TeddyDemo { public class TeddyRuntimeDemo : MonoBehaviour { public enum OperationMode { Default, Draw, Move, Cut }; [SerializeField] new Camera camera; [SerializeField] Shader lineShader; [SerializeField] GameObject prefab; [SerializeField] bool simulate; Material lineMat; OperationMode mode; List<Vector2> screenpoints; List<Vector3> points; List<Puppet> puppets; Puppet selected; Vector3 origin; Vector3 startPoint; //手書きの円を表示する場所をずらすオフセット const float zOffset = 10f; //シーン開始時のカメラのベクトル Vector3 initialCameraPosition; //生成したオブジェクトを取り付ける親オブジェクト GameObject parent; void Start () { //カメラが無いなら追加 if(camera == null) { camera = Camera.main; } screenpoints = new List<Vector2>(); points = new List<Vector3>(); puppets = new List<Puppet>(); lineMat = new Material(lineShader); simulate = false; initialCameraPosition = camera.transform.position; } void Update () { //ボタンなどのuGUIをクリックしたときは画面クリックを無視する if (EventSystem.current.IsPointerOverGameObject()) return; //マウスの座標を取得 var screen = Input.mousePosition; switch (mode) { case OperationMode.Default: if (Input.GetMouseButtonDown(0)) { //Listを全て消去 points.Clear(); screenpoints.Clear(); // メインカメラからクリックしたポジションに向かってRayを撃つ。 var ray = camera.ScreenPointToRay(screen); RaycastHit hit; //Rayとオブジェクトが衝突していないかを調べる if (Physics.Raycast(ray.origin, ray.direction, out hit, float.MaxValue)) { //RayがあたったオブジェクトのPuppetクラスを取得 var puppet = hit.collider.GetComponent<Puppet>(); //RayがヒットしたオブジェクトにPuppetクラスがあったら if(puppet != null) { startPoint = camera.ScreenToWorldPoint(screen); //オブジェクトに物理演算を付与 selected = puppet; selected.Select();//body.isKinematic = true; //クリックしたスクリーン座標をRayがヒットしたオブジェクトのワールド座標にする startPoint = hit.point; //Rayの始点を、ヒットしたオブジェクトの座標へ移動 origin = selected.transform.position; mode = OperationMode.Move; } else { mode = OperationMode.Draw; } } //Rayの先にオブジェクトが無い場合 else { mode = OperationMode.Draw; } } //右ボタンをクリックでカット else if(Input.GetMouseButtonDown(1)) { points.Clear(); screenpoints.Clear(); mode = OperationMode.Cut; } break; //Game画面上で黒い手書きの線の表示 case OperationMode.Draw: if (Input.GetMouseButtonUp(0)) { Build(); mode = OperationMode.Default; } else { var point = camera.ScreenToWorldPoint(new Vector3(screen.x, screen.y, camera.nearClipPlane + zOffset)); points.Add(point); screenpoints.Add(new Vector2(screen.x, screen.y)); } break; case OperationMode.Move: if (Input.GetMouseButtonUp(0)) { selected.Unselect(); Simulate(simulate); selected = null; mode = OperationMode.Default; } else { var currentPoint = camera.ScreenToWorldPoint(new Vector3(screen.x, screen.y, camera.nearClipPlane + zOffset)); var offset = currentPoint - startPoint; selected.transform.position = origin + offset; } break; case OperationMode.Cut: if(Input.GetMouseButtonUp(1)) { Cut(); mode = OperationMode.Default; } else { var point = camera.ScreenToWorldPoint(new Vector3(screen.x, screen.y, camera.nearClipPlane + zOffset * 0.5f)); points.Add(point); screenpoints.Add(new Vector2(screen.x, screen.y)); } break; } } //---------------------------------- //線を引く //---------------------------------- void Build () { if (screenpoints.Count > 5) { var go = Instantiate(prefab); try { Create(go, screenpoints); var puppet = go.GetComponent<Puppet>(); puppets.Add(puppet); Simulate(simulate); } catch(Exception) { Destroy(go); } } } void Cut() { for(int i = 0, n = screenpoints.Count; i < n; i++) { var screen = screenpoints[i]; var ray = camera.ScreenPointToRay(screen); RaycastHit hit; if (Physics.Raycast(ray.origin, ray.direction, out hit, float.MaxValue)) { var teddy = hit.collider.GetComponent<Teddy.Teddy>(); if(teddy != null) { try { TeddyUtility.CutMesh(teddy, camera, screenpoints); // Copy material for sub meshes var filter = teddy.GetComponent<MeshFilter>(); var renderer = teddy.GetComponent<MeshRenderer>(); var mat = renderer.sharedMaterial; int count = filter.sharedMesh.subMeshCount; var materials = new Material[count]; for(int j = 0; j < count; j++) { materials[j] = mat; } renderer.sharedMaterials = materials; } catch { } break; } } } } public void Reset() { Simulate(true); puppets.ForEach(puppet => { puppet.Ignore(); Destroy(puppet.gameObject, 10f); }); puppets.Clear(); } //----------------------------------------- //手書きのオブジェクトを生成する //------------------------------------------ void Create (GameObject go, List<Vector2> screens) { //カメラのRotateの角度を取得 var cameraQuaternion = camera.transform.rotation; //(Closureクラスが見つからない。たぶんTeddyRuntime.dllの中に入っていると思われます) var closure = Closure.GetClosure(screens); if (closure.Count > 2) { closure.RemoveAt(0); closure.RemoveAt(closure.Count - 1); } screens.AddRange(closure); //screenの座標を引数にして、camera.ScreenToWorldPointの座標を返す var world = screens.Select(screen => { var makePos = camera.ScreenToWorldPoint(new Vector3(screen.x, screen.y, camera.nearClipPlane + zOffset)); //cameraが90°、または-90°のとき、手書きの円で作ったポイントをxy座標へ転写 if (cameraQuaternion.eulerAngles.y == 90f) { makePos = Quaternion.Euler(0f, 90f, 0f) * makePos; } else if(cameraQuaternion.eulerAngles.y == -90f || cameraQuaternion.eulerAngles.y == 270f) { makePos = Quaternion.Euler(0f, -90f, 0f) * makePos; } return makePos; }).ToList();//ToList()で、screens全体にbody.isKinematic = true;を付与 //go オブジェクトをカメラの向きに合わせる //go.transform.rotation = camera.transform.rotation; var points = world.Select(p => new Vector2(p.x, p.y)).ToList(); // create lowpoly mesh for MeshCollider vertex count limit.(APIの部分) var lowpoly = TeddyUtility.CreateMesh(points, 200, 0.85f); var collider = go.GetComponent<MeshCollider>(); collider.sharedMesh = lowpoly; TeddyUtility.CreateTeddy(go, points, 600, 0.85f); //生成したオブジェクトの色を変更する go.GetComponent<Renderer>().material.color = Color.red; //カメラ移動した分のベクトルを取得 var offsetPos = camera.transform.position - initialCameraPosition; //goをの位置ベクトルを取得 var goPos = go.transform.position; //カメラがのy軸が0, 90, 180°, 270のとき if(cameraQuaternion.eulerAngles.y == 0f) { goPos = new Vector3(0f, goPos.y, offsetPos.z); } else if(cameraQuaternion.eulerAngles.y == 180f) { //カメラを基準にx軸対象にPuppetを移動させる offsetPos.z -= (offsetPos.z - camera.transform.position.z) * 2f; goPos = new Vector3(0f, goPos.y, offsetPos.z); } else if(cameraQuaternion.eulerAngles.y == 90f) { go.transform.rotation = Quaternion.Euler(0f, -90f, 0f); goPos = new Vector3(offsetPos.x + zOffset, goPos.y, 0f); } else if (cameraQuaternion.eulerAngles.y == -90f || cameraQuaternion.eulerAngles.y == 270f) { go.transform.rotation = Quaternion.Euler(0f, 90f, 0f); goPos = new Vector3(offsetPos.x - zOffset, goPos.y, 0f); } //goを手書きの円の位置に移動 go.transform.position = goPos; //goを指定したオブジェクトの子に配置 if(parent != null) { go.transform.SetParent(parent.transform, true); } else { Debug.Log("部位を選択してください。"); } } //------------------------------- //生成したオブジェクトのisKinematicの切り替え //------------------------------- public void OnToggleSimulate(bool flag) { simulate = flag; Simulate(simulate); } void Simulate (bool flag) { puppets.ForEach(puppet => { puppet.body.isKinematic = !flag; }); } //---------------------------------- //ゲーム画面でドラッグした時に線を引く //------------------------------------- void OnRenderObject() { GL.PushMatrix(); lineMat.SetPass(0); GL.Begin(GL.LINES); GL.Color(Color.black); for(int i = 0, n = points.Count; i < n - 1; i++) { GL.Vertex(points[i]); GL.Vertex(points[i + 1]); } GL.End(); GL.PopMatrix(); } //--------------------------------------------------- //生成したオブジェクトを取り付ける親オブジェクトの選択 //-------------------------------------------------- public void OnRightHand() { parent = GameObject.Find("unitychan/Character1_Reference/Character1_Hips/Character1_Spine/Character1_Spine1/Character1_Spine2/Character1_RightShoulder/Character1_RightArm/Character1_RightForeArm/Character1_RightHand").gameObject; Debug.Log("a" + parent.name); } } } |
取り付けるモデルの配置
モデルは何でもいいので、今回はユニティーちゃんを使用しました。また、体の部位を選択するボタン「SelectBodyButton」を作成しました。これを押すと、選択した体の部位に、手書きのオブジェクトが子オブジェクトとしてセットされます。
では、TeddyRuntimeDemo.cs内に以下のコードを足します。
グローバル変数
1 2 |
//生成したオブジェクトを取り付ける親オブジェクト GameObject parent; |
Create () メソッドの最下部
SetParent(parent.transform, true); でpearent オブジェクトの子にgoを配置できます。
1 2 3 4 5 6 7 8 9 10 |
//goを指定したオブジェクトの子に配置 if(parent != null) { go.transform.SetParent(parent.transform, true); } else { Debug.Log("部位を選択してください。"); } |
新規メソッド OnRightHand()
1 2 3 4 5 6 7 8 |
//--------------------------------------------------- //生成したオブジェクトを取り付ける親オブジェクトの選択 //-------------------------------------------------- public void OnRightHand() { parent = GameObject.Find("unitychan/Character1_Reference/Character1_Hips/Character1_Spine/Character1_Spine1/Character1_Spine2/Character1_RightShoulder/Character1_RightArm/Character1_RightForeArm/Character1_RightHand").gameObject; Debug.Log(parent.name); } |
ここではユニティちゃんの右手を取得しています。
(Optimize Transform Hierarchy を使えば見た目の階層を減らせます)
最後に、TeddyRutimeDemo.csのOnRightHand () をSelectBodyButtonに取り付けてください(※正確にはSelectBodyButton/RightHand のButtonコンポーネントです。SelectBodyButtonは空オブジェクトなので)。
これで準備完了です。実行すると、描いた絵がユニティーちゃんの右手の子オブジェクトとして張り付きます。