添加信息

This commit is contained in:
liteng 2018-08-24 07:43:39 +08:00
parent 9a22c6e685
commit bb812cd703
43 changed files with 44 additions and 1 deletions

View File

@ -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;

View File

@ -1,5 +1,6 @@
/**
* 物理
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function Physics(options) {

View File

@ -3,6 +3,7 @@
/**
* 状态栏
* @author mrdoob / http://mrdoob.com/
* @author tengge / https://github.com/tengge1
*/
function StatusBar(options) {
UI.Control.call(this, options);

View File

@ -2,6 +2,7 @@ import Control from '../ui/Control';
/**
* 时间线窗口
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function TimePanel(options) {

View File

@ -2,6 +2,7 @@ import UI from '../ui/UI';
/**
* 工具栏
* @author tengge / https://github.com/tengge1
*/
function Toolbar(options) {
UI.Control.call(this, options);

View File

@ -3,6 +3,7 @@
/**
* 场景编辑区
* @author mrdoob / http://mrdoob.com/
* @author tengge / https://github.com/tengge1
*/
function Viewport(options) {
UI.Control.call(this, options);

View File

@ -2,6 +2,7 @@ import UI from '../../ui/UI';
/**
* 添加菜单
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function AddMenu(options) {

View File

@ -2,6 +2,7 @@ import UI from '../../ui/UI';
/**
* 动画菜单
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function AnimationMenu(options) {

View File

@ -2,6 +2,7 @@ import UI from '../../ui/UI';
/**
* 资源菜单
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function AssetMenu(options) {

View File

@ -2,6 +2,7 @@ import UI from '../../ui/UI';
/**
* 组件菜单
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function ComponentMenu(options) {

View File

@ -2,6 +2,7 @@ import UI from '../../ui/UI';
/**
* 编辑菜单
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function EditMenu(options) {

View File

@ -2,6 +2,7 @@ import UI from '../../ui/UI';
/**
* 示例菜单
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function ExampleMenu(options) {

View File

@ -2,6 +2,7 @@ import UI from '../../ui/UI';
/**
* 帮助菜单
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function HelpMenu(options) {

View File

@ -2,6 +2,7 @@ import UI from '../../ui/UI';
/**
* Logo标志
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function Logo(options) {

View File

@ -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);

View File

@ -2,6 +2,7 @@ import UI from '../../ui/UI';
/**
* 选项菜单
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function OptionsMenu(options) {

View File

@ -2,6 +2,7 @@ import UI from '../../ui/UI';
/**
* 物体菜单
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function PhysicsMenu(options) {

View File

@ -2,6 +2,7 @@ import UI from '../../ui/UI';
/**
* 启动菜单
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function PlayMenu(options) {

View File

@ -2,6 +2,7 @@ import UI from '../../ui/UI';
/**
* 场景菜单
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function SceneMenu(options) {

View File

@ -2,6 +2,7 @@ import UI from '../../ui/UI';
/**
* 状态菜单菜单栏右侧
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function StatusMenu(options) {

View File

@ -1,7 +1,8 @@
import UI from '../../ui/UI';
/**
* 组件面板
* 动画面板
* @author tengge / https://github.com/tengge1
*/
function AnimationPanel(options) {
UI.Control.call(this, options);

View File

@ -2,6 +2,7 @@ import UI from '../../ui/UI';
/**
* 组件面板
* @author tengge / https://github.com/tengge1
*/
function ComponentPanel(options) {
UI.Control.call(this, options);

View File

@ -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);

View File

@ -3,6 +3,7 @@
/**
* 场景面板
* @author mrdoob / http://mrdoob.com/
* @author tengge / https://github.com/tengge1
*/
function HierachyPanel(options) {
UI.Control.call(this, options);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -3,6 +3,7 @@
/**
* 几何体信息面板
* @author mrdoob / http://mrdoob.com/
* @author tengge / https://github.com/tengge1
*/
function GeometryInfoPanel(options) {
UI.Control.call(this, options);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -6,6 +6,7 @@ import UploadUtils from '../../utils/UploadUtils';
/**
* 模型窗口
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function ModelWindow(options) {

View File

@ -3,6 +3,7 @@ import WebGLRendererSerializer from '../../serialization/core/WebGLRendererSeria
/**
* 选项窗口
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function OptionsWindow(options) {

View File

@ -6,6 +6,7 @@ import Converter from '../../serialization/Converter';
/**
* 场景窗口
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function SceneWindow(options) {