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