diff --git a/ShadowEditor.Web/src/editor/Editor.js b/ShadowEditor.Web/src/editor/Editor.js index 8ee4b750..6c9840fd 100644 --- a/ShadowEditor.Web/src/editor/Editor.js +++ b/ShadowEditor.Web/src/editor/Editor.js @@ -4,6 +4,7 @@ import Storage from '../core/Storage'; /** * 编辑器 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function Editor(app) { this.app = app; diff --git a/ShadowEditor.Web/src/editor/Physics.js b/ShadowEditor.Web/src/editor/Physics.js index 1454cb9e..9231e62a 100644 --- a/ShadowEditor.Web/src/editor/Physics.js +++ b/ShadowEditor.Web/src/editor/Physics.js @@ -1,5 +1,6 @@ /** * 物理 + * @author tengge / https://github.com/tengge1 * @param {*} options */ function Physics(options) { diff --git a/ShadowEditor.Web/src/editor/StatusBar.js b/ShadowEditor.Web/src/editor/StatusBar.js index df6084e9..c74f0d79 100644 --- a/ShadowEditor.Web/src/editor/StatusBar.js +++ b/ShadowEditor.Web/src/editor/StatusBar.js @@ -3,6 +3,7 @@ /** * 状态栏 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function StatusBar(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/TimePanel.js b/ShadowEditor.Web/src/editor/TimePanel.js index 2ec216e7..a9166490 100644 --- a/ShadowEditor.Web/src/editor/TimePanel.js +++ b/ShadowEditor.Web/src/editor/TimePanel.js @@ -2,6 +2,7 @@ import Control from '../ui/Control'; /** * 时间线窗口 + * @author tengge / https://github.com/tengge1 * @param {*} options */ function TimePanel(options) { diff --git a/ShadowEditor.Web/src/editor/Toolbar.js b/ShadowEditor.Web/src/editor/Toolbar.js index 72fbe3cc..80067ae3 100644 --- a/ShadowEditor.Web/src/editor/Toolbar.js +++ b/ShadowEditor.Web/src/editor/Toolbar.js @@ -2,6 +2,7 @@ import UI from '../ui/UI'; /** * 工具栏 + * @author tengge / https://github.com/tengge1 */ function Toolbar(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/Viewport.js b/ShadowEditor.Web/src/editor/Viewport.js index 6b300867..0f4713df 100644 --- a/ShadowEditor.Web/src/editor/Viewport.js +++ b/ShadowEditor.Web/src/editor/Viewport.js @@ -3,6 +3,7 @@ /** * 场景编辑区 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function Viewport(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/menubar/AddMenu.js b/ShadowEditor.Web/src/editor/menubar/AddMenu.js index c3fb98d7..4dfaea66 100644 --- a/ShadowEditor.Web/src/editor/menubar/AddMenu.js +++ b/ShadowEditor.Web/src/editor/menubar/AddMenu.js @@ -2,6 +2,7 @@ import UI from '../../ui/UI'; /** * 添加菜单 + * @author tengge / https://github.com/tengge1 * @param {*} options */ function AddMenu(options) { diff --git a/ShadowEditor.Web/src/editor/menubar/AnimationMenu.js b/ShadowEditor.Web/src/editor/menubar/AnimationMenu.js index 7179aaae..10065a0f 100644 --- a/ShadowEditor.Web/src/editor/menubar/AnimationMenu.js +++ b/ShadowEditor.Web/src/editor/menubar/AnimationMenu.js @@ -2,6 +2,7 @@ import UI from '../../ui/UI'; /** * 动画菜单 + * @author tengge / https://github.com/tengge1 * @param {*} options */ function AnimationMenu(options) { diff --git a/ShadowEditor.Web/src/editor/menubar/AssetMenu.js b/ShadowEditor.Web/src/editor/menubar/AssetMenu.js index 385f51de..03ea7188 100644 --- a/ShadowEditor.Web/src/editor/menubar/AssetMenu.js +++ b/ShadowEditor.Web/src/editor/menubar/AssetMenu.js @@ -2,6 +2,7 @@ import UI from '../../ui/UI'; /** * 资源菜单 + * @author tengge / https://github.com/tengge1 * @param {*} options */ function AssetMenu(options) { diff --git a/ShadowEditor.Web/src/editor/menubar/ComponentMenu.js b/ShadowEditor.Web/src/editor/menubar/ComponentMenu.js index c294ad57..07ddc3c7 100644 --- a/ShadowEditor.Web/src/editor/menubar/ComponentMenu.js +++ b/ShadowEditor.Web/src/editor/menubar/ComponentMenu.js @@ -2,6 +2,7 @@ import UI from '../../ui/UI'; /** * 组件菜单 + * @author tengge / https://github.com/tengge1 * @param {*} options */ function ComponentMenu(options) { diff --git a/ShadowEditor.Web/src/editor/menubar/EditMenu.js b/ShadowEditor.Web/src/editor/menubar/EditMenu.js index 1e899e9c..5262baa5 100644 --- a/ShadowEditor.Web/src/editor/menubar/EditMenu.js +++ b/ShadowEditor.Web/src/editor/menubar/EditMenu.js @@ -2,6 +2,7 @@ import UI from '../../ui/UI'; /** * 编辑菜单 + * @author tengge / https://github.com/tengge1 * @param {*} options */ function EditMenu(options) { diff --git a/ShadowEditor.Web/src/editor/menubar/ExampleMenu.js b/ShadowEditor.Web/src/editor/menubar/ExampleMenu.js index 1a703c7b..9400c59d 100644 --- a/ShadowEditor.Web/src/editor/menubar/ExampleMenu.js +++ b/ShadowEditor.Web/src/editor/menubar/ExampleMenu.js @@ -2,6 +2,7 @@ import UI from '../../ui/UI'; /** * 示例菜单 + * @author tengge / https://github.com/tengge1 * @param {*} options */ function ExampleMenu(options) { diff --git a/ShadowEditor.Web/src/editor/menubar/HelpMenu.js b/ShadowEditor.Web/src/editor/menubar/HelpMenu.js index 54b9822b..8b3ffaab 100644 --- a/ShadowEditor.Web/src/editor/menubar/HelpMenu.js +++ b/ShadowEditor.Web/src/editor/menubar/HelpMenu.js @@ -2,6 +2,7 @@ import UI from '../../ui/UI'; /** * 帮助菜单 + * @author tengge / https://github.com/tengge1 * @param {*} options */ function HelpMenu(options) { diff --git a/ShadowEditor.Web/src/editor/menubar/Logo.js b/ShadowEditor.Web/src/editor/menubar/Logo.js index b79d9610..b83993f7 100644 --- a/ShadowEditor.Web/src/editor/menubar/Logo.js +++ b/ShadowEditor.Web/src/editor/menubar/Logo.js @@ -2,6 +2,7 @@ import UI from '../../ui/UI'; /** * Logo标志 + * @author tengge / https://github.com/tengge1 * @param {*} options */ function Logo(options) { diff --git a/ShadowEditor.Web/src/editor/menubar/Menubar.js b/ShadowEditor.Web/src/editor/menubar/Menubar.js index e489ab24..507a0e00 100644 --- a/ShadowEditor.Web/src/editor/menubar/Menubar.js +++ b/ShadowEditor.Web/src/editor/menubar/Menubar.js @@ -16,6 +16,7 @@ import StatusMenu from './StatusMenu'; /** * 菜单栏 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function Menubar(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/menubar/OptionsMenu.js b/ShadowEditor.Web/src/editor/menubar/OptionsMenu.js index 135a8867..ea83b823 100644 --- a/ShadowEditor.Web/src/editor/menubar/OptionsMenu.js +++ b/ShadowEditor.Web/src/editor/menubar/OptionsMenu.js @@ -2,6 +2,7 @@ import UI from '../../ui/UI'; /** * 选项菜单 + * @author tengge / https://github.com/tengge1 * @param {*} options */ function OptionsMenu(options) { diff --git a/ShadowEditor.Web/src/editor/menubar/PhysicsMenu.js b/ShadowEditor.Web/src/editor/menubar/PhysicsMenu.js index b4546436..d0b447a1 100644 --- a/ShadowEditor.Web/src/editor/menubar/PhysicsMenu.js +++ b/ShadowEditor.Web/src/editor/menubar/PhysicsMenu.js @@ -2,6 +2,7 @@ import UI from '../../ui/UI'; /** * 物体菜单 + * @author tengge / https://github.com/tengge1 * @param {*} options */ function PhysicsMenu(options) { diff --git a/ShadowEditor.Web/src/editor/menubar/PlayMenu.js b/ShadowEditor.Web/src/editor/menubar/PlayMenu.js index 9ff5bc4c..58106af2 100644 --- a/ShadowEditor.Web/src/editor/menubar/PlayMenu.js +++ b/ShadowEditor.Web/src/editor/menubar/PlayMenu.js @@ -2,6 +2,7 @@ import UI from '../../ui/UI'; /** * 启动菜单 + * @author tengge / https://github.com/tengge1 * @param {*} options */ function PlayMenu(options) { diff --git a/ShadowEditor.Web/src/editor/menubar/SceneMenu.js b/ShadowEditor.Web/src/editor/menubar/SceneMenu.js index f2b34423..963b7730 100644 --- a/ShadowEditor.Web/src/editor/menubar/SceneMenu.js +++ b/ShadowEditor.Web/src/editor/menubar/SceneMenu.js @@ -2,6 +2,7 @@ import UI from '../../ui/UI'; /** * 场景菜单 + * @author tengge / https://github.com/tengge1 * @param {*} options */ function SceneMenu(options) { diff --git a/ShadowEditor.Web/src/editor/menubar/StatusMenu.js b/ShadowEditor.Web/src/editor/menubar/StatusMenu.js index f345862a..f4174b7d 100644 --- a/ShadowEditor.Web/src/editor/menubar/StatusMenu.js +++ b/ShadowEditor.Web/src/editor/menubar/StatusMenu.js @@ -2,6 +2,7 @@ import UI from '../../ui/UI'; /** * 状态菜单(菜单栏右侧) + * @author tengge / https://github.com/tengge1 * @param {*} options */ function StatusMenu(options) { diff --git a/ShadowEditor.Web/src/editor/sidebar/AnimationPanel.js b/ShadowEditor.Web/src/editor/sidebar/AnimationPanel.js index 35c568af..bffa3cac 100644 --- a/ShadowEditor.Web/src/editor/sidebar/AnimationPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/AnimationPanel.js @@ -1,7 +1,8 @@ import UI from '../../ui/UI'; /** - * 组件面板 + * 动画面板 + * @author tengge / https://github.com/tengge1 */ function AnimationPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/ComponentPanel.js b/ShadowEditor.Web/src/editor/sidebar/ComponentPanel.js index 530c666e..982269f4 100644 --- a/ShadowEditor.Web/src/editor/sidebar/ComponentPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/ComponentPanel.js @@ -2,6 +2,7 @@ import UI from '../../ui/UI'; /** * 组件面板 + * @author tengge / https://github.com/tengge1 */ function ComponentPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/GeometryPanel.js b/ShadowEditor.Web/src/editor/sidebar/GeometryPanel.js index 319e5dbc..bb1e18fc 100644 --- a/ShadowEditor.Web/src/editor/sidebar/GeometryPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/GeometryPanel.js @@ -7,6 +7,7 @@ import BufferGeometryPanel from './geometry/BufferGeometryPanel'; /** * 几何体面板 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function GeometryPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/HierachyPanel.js b/ShadowEditor.Web/src/editor/sidebar/HierachyPanel.js index cc9a0a65..c43e206e 100644 --- a/ShadowEditor.Web/src/editor/sidebar/HierachyPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/HierachyPanel.js @@ -3,6 +3,7 @@ /** * 场景面板 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function HierachyPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/MaterialPanel.js b/ShadowEditor.Web/src/editor/sidebar/MaterialPanel.js index d3a07481..5824fb53 100644 --- a/ShadowEditor.Web/src/editor/sidebar/MaterialPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/MaterialPanel.js @@ -4,6 +4,7 @@ import SetMaterialValueCommand from '../../command/SetMaterialValueCommand'; /** * 材质面板 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function MaterialPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/ObjectPanel.js b/ShadowEditor.Web/src/editor/sidebar/ObjectPanel.js index 2b53bfe3..7d175928 100644 --- a/ShadowEditor.Web/src/editor/sidebar/ObjectPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/ObjectPanel.js @@ -5,6 +5,7 @@ import SetValueCommand from '../../command/SetValueCommand'; /** * 物体面板 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function ObjectPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/PropertyPanel.js b/ShadowEditor.Web/src/editor/sidebar/PropertyPanel.js index 1590c333..ab24681c 100644 --- a/ShadowEditor.Web/src/editor/sidebar/PropertyPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/PropertyPanel.js @@ -6,6 +6,7 @@ import MaterialPanel from './MaterialPanel'; /** * 属性面板 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function PropertyPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/ScriptPanel.js b/ShadowEditor.Web/src/editor/sidebar/ScriptPanel.js index 6e7c1cbb..e50bdaf3 100644 --- a/ShadowEditor.Web/src/editor/sidebar/ScriptPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/ScriptPanel.js @@ -4,6 +4,7 @@ import AddScriptCommand from '../../command/AddScriptCommand'; /** * 脚本面板 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function ScriptPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/Sidebar.js b/ShadowEditor.Web/src/editor/sidebar/Sidebar.js index 2308c668..d4ff4c25 100644 --- a/ShadowEditor.Web/src/editor/sidebar/Sidebar.js +++ b/ShadowEditor.Web/src/editor/sidebar/Sidebar.js @@ -9,6 +9,7 @@ import HistoryPanel from './HistoryPanel'; /** * 侧边栏 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function Sidebar(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/geometry/BoxGeometryPanel.js b/ShadowEditor.Web/src/editor/sidebar/geometry/BoxGeometryPanel.js index 33e50411..b7222eda 100644 --- a/ShadowEditor.Web/src/editor/sidebar/geometry/BoxGeometryPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/geometry/BoxGeometryPanel.js @@ -4,6 +4,7 @@ import SetGeometryCommand from '../../../command/SetGeometryCommand'; /** * 正方体几何体 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function BoxGeometryPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/geometry/BufferGeometryPanel.js b/ShadowEditor.Web/src/editor/sidebar/geometry/BufferGeometryPanel.js index 53f644c4..623f6488 100644 --- a/ShadowEditor.Web/src/editor/sidebar/geometry/BufferGeometryPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/geometry/BufferGeometryPanel.js @@ -4,6 +4,7 @@ import SetGeometryCommand from '../../../command/SetGeometryCommand'; /** * 缓冲几何体面板 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function BufferGeometryPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/geometry/CircleGeometryPanel.js b/ShadowEditor.Web/src/editor/sidebar/geometry/CircleGeometryPanel.js index 34939893..16b168e0 100644 --- a/ShadowEditor.Web/src/editor/sidebar/geometry/CircleGeometryPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/geometry/CircleGeometryPanel.js @@ -4,6 +4,7 @@ import SetGeometryCommand from '../../../command/SetGeometryCommand'; /** * 圆形几何体面板 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function CircleGeometryPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/geometry/CylinderGeometryPanel.js b/ShadowEditor.Web/src/editor/sidebar/geometry/CylinderGeometryPanel.js index 06acf89e..06ad0679 100644 --- a/ShadowEditor.Web/src/editor/sidebar/geometry/CylinderGeometryPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/geometry/CylinderGeometryPanel.js @@ -4,6 +4,7 @@ import SetGeometryCommand from '../../../command/SetGeometryCommand'; /** * 圆柱体 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function CylinderGeometryPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/geometry/GeometryInfoPanel.js b/ShadowEditor.Web/src/editor/sidebar/geometry/GeometryInfoPanel.js index c6f53f3f..83c35e25 100644 --- a/ShadowEditor.Web/src/editor/sidebar/geometry/GeometryInfoPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/geometry/GeometryInfoPanel.js @@ -3,6 +3,7 @@ /** * 几何体信息面板 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function GeometryInfoPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/geometry/IcosahedronGeometryPanel.js b/ShadowEditor.Web/src/editor/sidebar/geometry/IcosahedronGeometryPanel.js index d7c59a66..0b7f38bb 100644 --- a/ShadowEditor.Web/src/editor/sidebar/geometry/IcosahedronGeometryPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/geometry/IcosahedronGeometryPanel.js @@ -4,6 +4,7 @@ import SetGeometryCommand from '../../../command/SetGeometryCommand'; /** * 二十面体几何体面板 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function IcosahedronGeometryPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/geometry/LatheGeometryPanel.js b/ShadowEditor.Web/src/editor/sidebar/geometry/LatheGeometryPanel.js index 762d35f0..637eab7a 100644 --- a/ShadowEditor.Web/src/editor/sidebar/geometry/LatheGeometryPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/geometry/LatheGeometryPanel.js @@ -4,6 +4,7 @@ import SetGeometryCommand from '../../../command/SetGeometryCommand'; /** * 车床几何体面板 * @author rfm1201 + * @author tengge / https://github.com/tengge1 */ function LatheGeometryPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/geometry/PlaneGeometryPanel.js b/ShadowEditor.Web/src/editor/sidebar/geometry/PlaneGeometryPanel.js index 598b7267..1ab18684 100644 --- a/ShadowEditor.Web/src/editor/sidebar/geometry/PlaneGeometryPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/geometry/PlaneGeometryPanel.js @@ -4,6 +4,7 @@ import SetGeometryCommand from '../../../command/SetGeometryCommand'; /** * 平板几何体面板 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function PlaneGeometryPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/geometry/SphereGeometryPanel.js b/ShadowEditor.Web/src/editor/sidebar/geometry/SphereGeometryPanel.js index 67a84c78..c2e05517 100644 --- a/ShadowEditor.Web/src/editor/sidebar/geometry/SphereGeometryPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/geometry/SphereGeometryPanel.js @@ -4,6 +4,7 @@ import SetGeometryCommand from '../../../command/SetGeometryCommand'; /** * 球形几何体面板 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function SphereGeometryPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/geometry/TorusGeometryPanel.js b/ShadowEditor.Web/src/editor/sidebar/geometry/TorusGeometryPanel.js index 1dcf2423..082dcbbb 100644 --- a/ShadowEditor.Web/src/editor/sidebar/geometry/TorusGeometryPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/geometry/TorusGeometryPanel.js @@ -4,6 +4,7 @@ import SetGeometryCommand from '../../../command/SetGeometryCommand'; /** * 花托几何体面板 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function TorusGeometryPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/sidebar/geometry/TorusKnotGeometryPanel.js b/ShadowEditor.Web/src/editor/sidebar/geometry/TorusKnotGeometryPanel.js index 7ba6d419..7e99ea3d 100644 --- a/ShadowEditor.Web/src/editor/sidebar/geometry/TorusKnotGeometryPanel.js +++ b/ShadowEditor.Web/src/editor/sidebar/geometry/TorusKnotGeometryPanel.js @@ -4,6 +4,7 @@ import SetGeometryCommand from '../../../command/SetGeometryCommand'; /** * 环面纽结几何体面板 * @author mrdoob / http://mrdoob.com/ + * @author tengge / https://github.com/tengge1 */ function TorusKnotGeometryPanel(options) { UI.Control.call(this, options); diff --git a/ShadowEditor.Web/src/editor/window/ModelWindow.js b/ShadowEditor.Web/src/editor/window/ModelWindow.js index 661c63e7..11da2c4e 100644 --- a/ShadowEditor.Web/src/editor/window/ModelWindow.js +++ b/ShadowEditor.Web/src/editor/window/ModelWindow.js @@ -6,6 +6,7 @@ import UploadUtils from '../../utils/UploadUtils'; /** * 模型窗口 + * @author tengge / https://github.com/tengge1 * @param {*} options */ function ModelWindow(options) { diff --git a/ShadowEditor.Web/src/editor/window/OptionsWindow.js b/ShadowEditor.Web/src/editor/window/OptionsWindow.js index 5758e7a4..e27f7699 100644 --- a/ShadowEditor.Web/src/editor/window/OptionsWindow.js +++ b/ShadowEditor.Web/src/editor/window/OptionsWindow.js @@ -3,6 +3,7 @@ import WebGLRendererSerializer from '../../serialization/core/WebGLRendererSeria /** * 选项窗口 + * @author tengge / https://github.com/tengge1 * @param {*} options */ function OptionsWindow(options) { diff --git a/ShadowEditor.Web/src/editor/window/SceneWindow.js b/ShadowEditor.Web/src/editor/window/SceneWindow.js index f155c5b3..f401b087 100644 --- a/ShadowEditor.Web/src/editor/window/SceneWindow.js +++ b/ShadowEditor.Web/src/editor/window/SceneWindow.js @@ -6,6 +6,7 @@ import Converter from '../../serialization/Converter'; /** * 场景窗口 + * @author tengge / https://github.com/tengge1 * @param {*} options */ function SceneWindow(options) {