@galacean/editor-decorators
TypeScript icon, indicating that this package has built-in type declarations

0.0.4 • Public • Published

editor-decorators

A collection of decorator functions helps you write scripts in Galacean Editor.

Installation

npm install @galacean/editor-decorators

Usage

import { Script } from '@galacean/engine';
import { inspect } from "@galacean/editor-decorators";

export default class extends Script {
  @inspect('Number', {
    value: 1,
  })
  rotate = 1;

  onUpdate(deltaTime: number) {
    this.entity.transform.rotate(this.rotate, this.rotate, this.rotate);
  }
}

API

inspect(type: ComponentType, options: ComponentOptions)

This decorator exports the property to the Editor. It can be used on any property of a class. The property will be shown in the Inspector of the Editor.

ComponenType

export type ComponentType = "Input" | "Number" | "Slider" | "Boolean" | "Vector2" | "Vector3" | "Vector4" | "Rect" | "Color" | "AssetPicker" | "Select" | "SegmentControl" | "Textarea";

Common options

Name Type Required Description Default
value any Default value undefined
property string - The name according with EngineObject The name of the decorated property
label string - Label for the value, would be shown in the Inspector
info string - Additional information or a description about the GUI item.
priority number - The priority of the GUI item. The higher the priority, the higher the item is displayed in the Inspector.
onChange (instance: any, property: string, value: unknown) => void - Callback when the value is changed

NumberOptions

Name Type Required Description Default
max number - Maximum value
min number - Minimum value
dragStep number - Step value when dragging

AssetPickerOptions

Name Type Required Description Default
assetType string - The type of the asset
customFilter (asset: any) => boolean; - The filter of the asset

SelectOptions

Name Type Required Description Default
options string[] - The options of the select

Package Sidebar

Install

npm i @galacean/editor-decorators

Weekly Downloads

3

Version

0.0.4

License

MIT

Unpacked Size

26.2 kB

Total Files

18

Last publish

Collaborators

  • chengkong.zxx
  • imchenjian
  • ruimeng.su
  • yinjie
  • yiqi
  • jujie
  • luzhuang
  • husong
  • mrkou47
  • johanzhu
  • zhuxudong
  • zhanyingwei
  • gl3336563
  • eyworldwide