#Harmoware-VIS とは
#シミュレーション前後のマージン時間
Harmoware-VIS でシミュレーションを再生する際に、開始時間前と終了時間後に空白のマージン時間を挿入することが出来ます。
既定では
開始前(leading
)は100秒
終了後(trailing
)は180秒
となっています。
これをカスタマイズするには、アプリのルートクラスのマウント時に setLeading
と setTrailing
で秒数を設定してください。
class App extends Container {
componentDidMount(){
super.componentDidMount();
this.props.actions.setLeading(10);
this.props.actions.setTrailing(10);
}
...
}