Просмотр исходного кода

Editor: Fix default of `timeScale`. (#26984)

Michael Herzog 1 год назад
Родитель
Сommit
244cc277f4
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      editor/js/Sidebar.Animation.js

+ 1 - 1
editor/js/Sidebar.Animation.js

@@ -82,7 +82,7 @@ function SidebarAnimation( editor ) {
 	container.add( animationsList );
 
 	const mixerTimeScaleRow = new UIRow();
-	const mixerTimeScaleNumber = new UINumber( 0.5 ).setWidth( '60px' ).setRange( - 10, 10 );
+	const mixerTimeScaleNumber = new UINumber( 1 ).setWidth( '60px' ).setRange( - 10, 10 );
 	mixerTimeScaleNumber.onChange( function () {
 
 		mixer.timeScale = mixerTimeScaleNumber.getValue();