The ClassUtils is a utility class for class operations.

ClassUtils 是一个类工具的类。

构造函数

属性

_classMap: Record<string, any> = {}
_runtimeMap: Record<string, Function> = {}

方法

  • 参数

    • className: string

      The class name (e.g., "laya.display.Sprite") or a registered alias (e.g., "Sprite").

    返回 any

    The class object.

    Returns the class object based on the class name.

    根据类名返回类对象。

  • 参数

    • url: string

      The url of the prefab.

    返回 Function

    The class definition.

    Get runtime class by prefab url.

    通过 prefab url 获取 runtime 类。

  • 参数

    • className: string

      The name or alias for the class mapping.

    • classDef: any

      The full name of the class or a reference to the class.

    返回 void

    Registers a class mapping for easy retrieval during class reflection.

    注册 Class 映射,方便在类反射时获取。

  • 参数

    • url: string

      The url of the prefab.

    • cls: Function

      The class definition.

    返回 void

    Registers a runtime class.

    动态注册一个runtime类。