お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Close有効にした場合、レンダリングされた3Dオブジェクトが表示されます
// make the object invisible renderer.enabled = false;
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Example() { renderer.enabled = false; } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Example() as void: renderer.enabled = false
Another example:
// Toggle the Object's visibility each second. // make the object visible renderer.enabled = true; function Update () { // Find out whether current second is odd or even var seconds : int = Time.time; var oddeven = (seconds % 2) == 0; // Enable renderer accordingly renderer.enabled = oddeven; }
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Update() { int seconds = Time.time; bool oddeven = seconds % 2 == 0; renderer.enabled = oddeven; } void Example() { renderer.enabled = true; } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Update() as void: seconds as int = Time.time oddeven as bool = ((seconds % 2) == 0) renderer.enabled = oddeven def Example() as void: renderer.enabled = true