42
42

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Unity】Meshをワイヤーフレーム表示する

Last updated at Posted at 2014-05-17

001.png
箱をワイヤーフレーム表示できたらカッコイイかもと思って調べてみました。

ワイヤーフレーム表示にする

Cube.cs
using UnityEngine;
using System.Collections;

public class Cube : MonoBehaviour {

  // Use this for initialization
  void Start () {
    MeshFilter mf = GetComponent<MeshFilter>();
    mf.mesh.SetIndices(mf.mesh.GetIndices(0),MeshTopology.LineStrip,0);
  }
}

MeshTopology.Lines だと微妙だったので、MeshTopology.LineStrip にしたところ、
002.png
こんな感じでワイヤーフレーム表示ができました。

影を無効にする

ただ、このままだと影がついてしまっているので、これを無効にします。003.png
Mesh Renderer の Material を Default-Diffuse から Sprites-Default に変更します。

さらにスクリプトでマテリアルカラーを変更します。

Cube.cs
  MeshRenderer mr = GetComponent<MeshRenderer>();
  mr.material.color = new Color(0.4f, 0.4f, 0.9f);

色は青色に変更してみました。

005.png
これで完成です。

42
42
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
42
42

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?