threepipe
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

DeviceOrientationControlsPlugin.ts 474B

12345678910
  1. import {ACameraControlsPlugin} from '../base/ACameraControlsPlugin'
  2. import {TControlsCtor} from '../../core'
  3. import {DeviceOrientationControls2} from '../../three'
  4. export class DeviceOrientationControlsPlugin extends ACameraControlsPlugin {
  5. public static readonly PluginType = 'DeviceOrientationControlsPlugin'
  6. readonly controlsKey = 'deviceOrientation'
  7. protected _controlsCtor: TControlsCtor = (object, _domElement)=> new DeviceOrientationControls2(object)
  8. }