Mesh クラスは、オブジェクトのメッシュジオメトリに対する基本的なスクリプトインターフェースです。これは配列を使用して、頂点、三角形、法線、テクスチャ座標を表します。また、メッシュ生成を支援するその他多くの便利なプロパティと関数を提供します。
メッシュデータは、Mesh Filter コンポーネントを使用してオブジェクトに設定されます (このオブジェクトはまた、ジオメトリを表示するのにメッシュレンダラーも必要とします)。このコンポーネントは、よく使われる GetComponent 関数を通じてアクセスできます。
var mf: MeshFilter = GetComponent.<MeshFilter>();
// メッシュそのものを参照するために mf.mesh を使用します
メッシュオブジェクトには、頂点とその関連するデータ (法線や UV 座標) と三角形データに対するプロパティがあります。頂点は任意の順番で提供されますが、法線と UV の配列は、インデックスがすべて頂点に対応するように順序付けされる必要があります (つまり、法線の配列の要素 0 は、頂点 0 に法線を提供します)。頂点は、オブジェクトのローカル空間における点を表す Vector3 です。法線は、再度ローカル座標で方向を表す標準化された Vector3 になります。UV は、Vector2 で指定されますが、Vector2 タイプには、U や V というフィールドはないため、頭の中でこれらをそれぞれ X と Y に変換する必要があります。
三角形は、頂点配列のインデックスとして機能する整数の 3 の倍数で指定されます。三角形を表すために特殊なクラスを使用するのではなく、この配列は整数インデックスの簡単なリストで表します。インデックスは各三角形に対して 3 つずつ区切られ、最初の 3 つの要素は最初の三角形を定義し、次の 3 つは 2 つ目の三角形を定義する、というようになります。三角形で重要な点は、角の頂点の順序です。どの角から始めるかは問題ではありませんが、三角形の表示されている面を見下ろすようにして、時計回りになるように角が配置されている必要があります。
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.