eva-engine / eva.js

Eva.js is a front-end game engine specifically for creating interactive game projects.
https://eva.js.org
MIT License
1.75k stars 108 forks source link

复杂编辑 #78

Closed manyyuri closed 2 years ago

manyyuri commented 3 years ago

给几个特殊属性提供复杂编辑

// packages/plugin-evax/lib/EvaXComponent.ts
// @decorators.IDEProp 复杂编辑后续添加
  events: Events = {};

// packages/plugin-renderer-lottie/lib/Lottie.ts
// @decorators.IDEProp 复杂编辑后续添加
  slot: { [key: string]: string }

// packages/plugin-renderer-mask/lib/component.ts
// @decorators.IDEProp 复杂编辑后续添加
  type: MaskParams['type'];
// @decorators.IDEProp 复杂编辑后续添加
  style?: MaskParams['style'] = {};

// packages/plugin-renderer-text/lib/component.ts
// @decorators.IDEProp 复杂编辑后续添加
  style: TextParams['style'] = {};