Version: 2022.2
언어: 한국어

설명

A capsule primitive.

using UnityEngine;
using System.Collections;

// Creates a capsule primitive

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