Manual     Reference     Scripting  
  
Scripting > Enumerations > PrimitiveType   
  • Menu
  • Overview
  • Runtime Classes
  • Attributes
  • Enumerations
  • Editor Classes
  • Attributes
  • Enumerations
  • History
  • Index
  • PrimitiveType
  • All Members
  • Values
  • Capsule
  • Cube
  • Cylinder
  • Plane
  • Sphere

PrimitiveType.Capsule  

PrimitiveType.Capsule

Description

A capsule primitive

See Also: GameObject.CreatePrimitive

JavaScript
// Creates a capsule primitive
function Start () {
var capsule : GameObject = GameObject.CreatePrimitive(PrimitiveType.Capsule);
}

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Start() {
GameObject capsule = GameObject.CreatePrimitive(PrimitiveType.Capsule);
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Start():
capsule as GameObject = GameObject.CreatePrimitive(PrimitiveType.Capsule)