Preparing search index...

    A capsule-shaped physics collider.

        const model = this.pluginSystem.findInterface(Editor.Model.IModel) as Editor.Model.IModel;
    const scene = model.project.scene;

    // Create a scene object with a capsule collider
    const obj = scene.createSceneObject('PhysicsObject');
    obj.name = 'CapsuleColliderObject';
    const collider = obj.addComponent('ColliderComponent');

    // Create a capsule shape — commonly used for character controllers
    const capsule = Editor.Shape.createCapsuleShape(scene);
    capsule.radius = 0.5;
    capsule.length = 2.0;
    capsule.axis = Editor.Axis.Y;
    collider.shape = capsule;

    console.log(`Created capsule collider on: ${obj.name}`);
    console.log(` radius: ${capsule.radius}, length: ${capsule.length}, axis: Y`);

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    axis: Axis

    The axis along which the capsule extends.

    id: Uuid

    The unique id of the entity.

    length: number

    The length of the capsule along its axis.

    meta: Meta

    Metadata associated with this entity, providing access to its unique identifier and other descriptive properties.

    radius: number

    The radius of the capsule.

    type: string

    The entity's type.

    Methods

    • Returns the name of this object's type.

      Returns string

    • Returns true if the object is of the specified type.

      Parameters

      • type: string

      Returns boolean

    • Returns true if this object refers to the same instance as the given object.

      Parameters

      Returns boolean