Nocturna
    Preparing search index...

    Interface CubeCollisionObserver

    CubeCollisionObserver is an interface for objects that want to be notified when a collision occurs with the bottom face of the cube (e.g., for player death).

    interface CubeCollisionObserver {
        onBottomCollision: (collider: PhysicsBody) => void;
    }

    Implemented by

    Index

    Properties

    onBottomCollision: (collider: PhysicsBody) => void