You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: MouseDrag/Options.cs
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -24,13 +24,13 @@ public enum ActivateTypes
24
24
publicOptions()
25
25
{
26
26
activateType=config.Bind("activateType",defaultValue:ActivateTypes.AlwaysActive.ToString(),newConfigurableInfo("Controls are active when this condition is met. Always active in sandbox.",null,"","Active when"));
27
-
activateKey=config.Bind("activateKey",KeyCode.None,newConfigurableInfo("Key bind to activate controls when \""+ActivateTypes.KeyBindPressed.ToString()+"\" is selected.",null,"","Key bind"));
28
-
pauseOneKey=config.Bind("pauseOneKey",KeyCode.None,newConfigurableInfo("Key bind to pause/unpause the object/creature which you're currently dragging.",null,"","Pause/unpause"));
29
-
pauseAllCreaturesKey=config.Bind("pauseAllCreaturesKey",KeyCode.None,newConfigurableInfo("Key bind to pause/unpause all creatures except Player and SlugNPC.\nIndividually paused creatures remain paused.",null,"","Pause all creatures"));
30
-
unpauseAllKey=config.Bind("unpauseAllKey",KeyCode.None,newConfigurableInfo("Key bind to unpause all objects/creatures, including individually paused creatures.",null,"","Unpause all"));
31
-
deleteOneKey=config.Bind("deleteOneKey",KeyCode.None,newConfigurableInfo("Key bind to delete the object/creature which you're currently dragging.",null,"","Delete"));
32
-
deleteAllCreaturesKey=config.Bind("deleteAllCreaturesKey",KeyCode.None,newConfigurableInfo("Key bind to delete all creatures in current room except Player and SlugNPC.",null,"","Delete all creatures"));
33
-
deleteAllObjectsKey=config.Bind("deleteAllObjectsKey",KeyCode.None,newConfigurableInfo("Key bind to delete all objects/creatures in current room except Player and SlugNPC.",null,"","Delete all"));
27
+
activateKey=config.Bind("activateKey",KeyCode.None,newConfigurableInfo("KeyBind to activate controls when \""+ActivateTypes.KeyBindPressed.ToString()+"\" is selected.",null,"","KeyBind"));
28
+
pauseOneKey=config.Bind("pauseOneKey",KeyCode.None,newConfigurableInfo("KeyBind to pause/unpause the object/creature which you're currently dragging.",null,"","Pause/unpause"));
29
+
pauseAllCreaturesKey=config.Bind("pauseAllCreaturesKey",KeyCode.None,newConfigurableInfo("KeyBind to pause/unpause all creatures except Player and SlugNPC.\nIndividually paused creatures remain paused.",null,"","Pause all creatures"));
30
+
unpauseAllKey=config.Bind("unpauseAllKey",KeyCode.None,newConfigurableInfo("KeyBind to unpause all objects/creatures, including individually paused creatures.",null,"","Unpause all"));
31
+
deleteOneKey=config.Bind("deleteOneKey",KeyCode.None,newConfigurableInfo("KeyBind to delete the object/creature which you're currently dragging.",null,"","Delete"));
32
+
deleteAllCreaturesKey=config.Bind("deleteAllCreaturesKey",KeyCode.None,newConfigurableInfo("KeyBind to delete all creatures in current room except Player and SlugNPC.",null,"","Delete all creatures"));
33
+
deleteAllObjectsKey=config.Bind("deleteAllObjectsKey",KeyCode.None,newConfigurableInfo("KeyBind to delete all objects/creatures in current room except Player and SlugNPC.",null,"","Delete all"));
34
34
forceMouseVisible=config.Bind("forceMouseVisible",defaultValue:true,newConfigurableInfo("Makes Windows mouse pointer always be visible in-game when tools are active.",null,"","Force mouse visible"));
35
35
releaseGraspsPaused=config.Bind("releaseGraspsPaused",defaultValue:true,newConfigurableInfo("When creature is paused, all grasps (creatures/items) are released.",null,"","Pausing releases grasps"));
36
36
updateLastPos=config.Bind("updateLastPos",defaultValue:true,newConfigurableInfo("Reduces visual bugs when object is paused, but slightly affects drag behavior.",null,"","Update BodyChunk.lastPos"));
0 commit comments