|
|
@ -10,13 +10,10 @@ import { |
|
|
|
} from '@babylonjs/core'; |
|
|
|
} from '@babylonjs/core'; |
|
|
|
import { Button, Rectangle, Vector2WithInfo } from '@babylonjs/gui'; |
|
|
|
import { Button, Rectangle, Vector2WithInfo } from '@babylonjs/gui'; |
|
|
|
import { classToClass } from 'class-transformer'; |
|
|
|
import { classToClass } from 'class-transformer'; |
|
|
|
import { SceneManager } from 'src/app/babylon/controller/scene-manager'; |
|
|
|
|
|
|
|
import { UIManager } from 'src/app/babylon/controller/ui-manager'; |
|
|
|
import { UIManager } from 'src/app/babylon/controller/ui-manager'; |
|
|
|
import { BabylonTool } from 'src/app/babylon/tool/babylon-tool'; |
|
|
|
import { BabylonTool } from 'src/app/babylon/tool/babylon-tool'; |
|
|
|
import { BabylonUIStyleTool } from 'src/app/babylon/tool/babylon-ui-style-tool'; |
|
|
|
|
|
|
|
import { GizmoTool } from 'src/app/babylon/tool/gizmo-tool'; |
|
|
|
import { GizmoTool } from 'src/app/babylon/tool/gizmo-tool'; |
|
|
|
import { TsTool } from 'src/app/babylon/tool/ts-tool'; |
|
|
|
import { TsTool } from 'src/app/babylon/tool/ts-tool'; |
|
|
|
import { isRegularExpressionLiteral } from 'typescript'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import { ModelData } from '../../data/model-data/model-data'; |
|
|
|
import { ModelData } from '../../data/model-data/model-data'; |
|
|
@ -316,6 +313,7 @@ export class ModelInfo { |
|
|
|
getHeadUIPos() { |
|
|
|
getHeadUIPos() { |
|
|
|
let result: Vector2 = null; |
|
|
|
let result: Vector2 = null; |
|
|
|
if (this.uiFollowRoot != null) { |
|
|
|
if (this.uiFollowRoot != null) { |
|
|
|
|
|
|
|
result = new Vector2(); |
|
|
|
result.x = this.uiFollowRoot.leftInPixels; |
|
|
|
result.x = this.uiFollowRoot.leftInPixels; |
|
|
|
result.y = this.uiFollowRoot.topInPixels; |
|
|
|
result.y = this.uiFollowRoot.topInPixels; |
|
|
|
} |
|
|
|
} |
|
|
|