ソースを参照

Minor type fix

master
Palash Bansal 2年前
コミット
c78018910e
コミッターのメールアドレスに関連付けられたアカウントが存在しません
2個のファイルの変更2行の追加2行の削除
  1. 1
    1
      src/core/camera/PerspectiveCamera2.ts
  2. 1
    1
      src/plugins/animation/CameraViewPlugin.ts

+ 1
- 1
src/core/camera/PerspectiveCamera2.ts ファイルの表示

@@ -430,7 +430,7 @@ export class PerspectiveCamera2 extends PerspectiveCamera implements ICamera {
// region ui

private _camUi: UiObjectConfig[] = [
...generateUiConfig(this),
...generateUiConfig(this) || [],
{
type: 'input',
label: ()=>(this.autoNearFar ? 'Min' : '') + ' Near',

+ 1
- 1
src/plugins/animation/CameraViewPlugin.ts ファイルの表示

@@ -360,7 +360,7 @@ export class CameraViewPlugin extends AViewerPluginSync<'viewChange'|'startViewC
// expanded: true,
children: [
()=>[...this._cameraViews.map(view => view.uiConfig)],
...generateUiConfig(this),
...generateUiConfig(this) || [],
],
}


読み込み中…
キャンセル
保存