PrimitiveType
.Plane
Manual
Reference
Scripting
Scripting
>
Enumerations
>
PrimitiveType
PrimitiveType
.Plane
Menu
Overview
Runtime Classes
Attributes
Enumerations
Editor Classes
Enumerations
History
Index
PrimitiveType
All Members
Values
Capsule
Cube
Cylinder
Plane
Sphere
PrimitiveType.Plane
Description
A plane primitive
See Also:
GameObject.CreatePrimitive
JavaScripts
JavaScript
C#
Boo
// Creates a plane primitive
function
Start
() {
var
plane :
GameObject
=
GameObject.CreatePrimitive
(
PrimitiveType.Plane
);
}
using UnityEngine;
using System.Collections;
public
class
example :
MonoBehaviour
{
void
Start
() {
GameObject
plane =
GameObject.CreatePrimitive
(
PrimitiveType.Plane
);
}
}
import
UnityEngine
import
System.Collections
class
example(
MonoBehaviour
):
def
Start
():
plane as
GameObject
=
GameObject.CreatePrimitive
(
PrimitiveType.Plane
)