-
-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: template editor edit sync action for issue#309 #347
Conversation
Former-commit-id: aef8275
Former-commit-id: 11dc9f1
Former-commit-id: ea83d9e
Former-commit-id: b320722
Former-commit-id: 81c7d3e
feat: Language Server Protocol functionalities Former-commit-id: 9ed8883
Former-commit-id: af2ce93
Former-commit-id: 79a2e63
Former-commit-id: ebbf312
rename auto selection Former-commit-id: 30a5eaf
Basic WebGAL Language Service Former-commit-id: 14d19e3
Former-commit-id: 39e89de
Former-commit-id: 4092adf
Former-commit-id: 75fd00f
add template folder info on assets Former-commit-id: 9a52611
Former-commit-id: 6bafc2d
Former-commit-id: f62980f
Former-commit-id: 913445b
Former-commit-id: 0b85cf8
Former-commit-id: c2ad5bb
Former-commit-id: 01d74ae
improve display of the delete dialog, fix nested folder scene file editing Former-commit-id: ef9d700
Former-commit-id: 24fbf22
Former-commit-id: 8d92be7
Former-commit-id: d3bf514
Former-commit-id: b7d7c5b
Former-commit-id: c49e5aa
feat: add live preview button on game preview Former-commit-id: 3fb41d4
Former-commit-id: 6661351
feat(ci): Retrieve the Node.js version from package.json
...ages/origine2/src/pages/templateEditor/TemplateEditorSidebar/ComponentTree/ComponentTree.tsx
Outdated
Show resolved
Hide resolved
…yarn/packages/WebGAL-electron/cross-spawn-7.0.6 chore(deps): bump cross-spawn from 7.0.3 to 7.0.6 in /packages/WebGAL-electron
…yarn/cross-spawn-7.0.5 chore(deps): bump cross-spawn from 7.0.3 to 7.0.5
@@ -1,8 +1,73 @@ | |||
import {logger} from "./logger"; | |||
import {DebugCommand, IDebugMessage} from "@/types/debugProtocol"; | |||
import useEditorStore from "@/store/useEditorStore"; | |||
import {isArray} from "lodash"; | |||
|
|||
export interface componentsVisibility { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interface 命名不规范
const compose = (message: componentVisibilityCommandInterface[]) => { | ||
return message.map((item) => { | ||
return `${item.component}:${item.visibility}`; | ||
}).join('\n'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1、这里直接序列化,引擎那边反序列化是不是比这种手动序列化来的更方便,还不容易出问题
2、引擎侧看起来是 split ;
,这里为何是 join \n
* 不知道为啥,不写到这打包会有问题 | ||
*/ | ||
const textbox = { | ||
export const TemplateGraphicComponentTreeTitle = () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
函数命名不符合规范
refactor(ci): refactor into two workflow files
0c2fdbd
to
be4e2c7
Compare
#309