Cluster Creator Kit Script Reference
    Preparing search index...

    Interface OverlapItem

    Describes an overlap between an item and another object.

    interface Overlap {
        handle: ItemHandle | PlayerHandle | null;
        selfNode: ClusterScript | SubNode;
    }
    Index

    Properties

    Properties

    handle: ItemHandle | PlayerHandle | null

    Returns a handle that describes the overlapping object, or null.

    If the overlapping object is an item, returns ItemHandle.
    If the overlapping object is a player, returns PlayerHandle.
    If the overlapping object is not an item or a player, returns null.

    Refer Handles in the top page of Script Reference to know how to handle this value.

    Describes which part of the item is overlapping.