js/SceneKit/SCNActionScale.js
- 'use strict'
-
- import SCNAction from './SCNAction'
- import SCNActionTimingMode from './SCNActionTimingMode'
-
- export default class SCNActionScale extends SCNAction {
- static get _propTypes() {
- return {
- _actions: 'NSArray',
- _finished: 'boolean',
- _duration: 'float',
- _timingMode: 'integer',
- _beginTime: 'float',
- _isRunning: 'boolean',
- _pausedTime: 'float'
- }
- }
-
- /**
- * constructor
- * @access public
- * @constructor
- */
- constructor() {
- super()
-
- this._actions = []
- this._finished = false
- this._duration = 0
- this._timingMode = SCNActionTimingMode.linear
- this._beginTime = 0
- this._isRunning = false
- this._pausedTime = 0
- }
- }
-