Skip to content

@ue-too/ecs / index / createComponentName

函式: createComponentName()

createComponentName(name): symbol

定義於: index.ts:234

Helper function to create a component name from a string. This creates a unique symbol for the component name.

參數

name

string

The string name for the component

回傳

symbol

A unique symbol for the component name

範例

typescript
const Position = createComponentName('Position');
coordinator.registerComponent<Position>(Position);