File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -142,8 +142,8 @@ window.onload = function () {
142142 messagefolder . add ( options , "ui_message_text" ) . name ( "Message Text" ) . onChange ( updateMask ) ;
143143 messagefolder . add ( options , "ui_message_scale" ) . min ( 1 ) . max ( 10 ) . step ( 1 ) . name ( "Scale" ) . onChange ( updateMask ) ;
144144 const messagePositionFolder = messagefolder . addFolder ( "Position" ) ;
145- messagePositionFolder . add ( options , "ui_message_positionX" ) . min ( - 100 ) . max ( 100 ) . step ( 1 ) . name ( "X" ) . onChange ( updateMask ) ;
146- messagePositionFolder . add ( options , "ui_message_positionY" ) . min ( - 100 ) . max ( 100 ) . step ( 1 ) . name ( "Y" ) . onChange ( updateMask ) ;
145+ messagePositionFolder . add ( options , "ui_message_positionX" ) . min ( 0 ) . max ( 200 ) . step ( 1 ) . name ( "X" ) . onChange ( updateMask ) ;
146+ messagePositionFolder . add ( options , "ui_message_positionY" ) . min ( 0 ) . max ( 200 ) . step ( 1 ) . name ( "Y" ) . onChange ( updateMask ) ;
147147
148148 const otherFolder = gui . addFolder ( "Other" ) ;
149149 otherFolder . add ( options , 'ui_other_codesCommaSeparated' ) . name ( 'Codes (Comma separated)' ) . onChange ( ( ) => {
Original file line number Diff line number Diff line change 532532 "condition" : " ui_message_message.value != 0" ,
533533 "fraction" : false ,
534534 "index" : 37 ,
535- "max" : 100 ,
536- "min" : -100 ,
535+ "max" : 200 ,
536+ "min" : 0 ,
537537 "order" : 137 ,
538538 "text" : " Message Position X" ,
539539 "type" : " slider" ,
544544 "condition" : " ui_message_message.value != 0" ,
545545 "fraction" : false ,
546546 "index" : 38 ,
547- "max" : 100 ,
548- "min" : -100 ,
547+ "max" : 200 ,
548+ "min" : 0 ,
549549 "order" : 138 ,
550550 "text" : " Message Position Y" ,
551551 "type" : " slider" ,
You can’t perform that action at this time.
0 commit comments