; ; keybindings - specific to the heightfield editor ; ; keybindings to change the brush shape keybinding { key q toEditor TEditor_Heightfield bind { editorHeightfield brushShape circle } } keybinding { key w toEditor TEditor_Heightfield bind { editorHeightfield brushShape square } } ; keybindings to change the height brush mode keybinding { key 1 toEditor TEditor_Heightfield bind { editorHeightfield heightBrushMode raiseLower } } keybinding { key 4 toEditor TEditor_Heightfield bind { editorHeightfield heightBrushMode noise } } keybinding { key 2 toEditor TEditor_Heightfield bind { editorHeightfield heightBrushMode smooth } } keybinding { key 3 toEditor TEditor_Heightfield bind { editorHeightfield heightBrushMode flatten } } ; keybindings to do color pick and set color paint mode keybinding { key shift f3 toEditor TEditor_Heightfield bind { editorHeightfield selectColor } } ; keybindings to cycle tileset, and set tile set paint mode keybinding { key shift f2 toEditor TEditor_Heightfield bind { editorHeightfield tileSetCycle -1 } } keybinding { key shift f1 toEditor TEditor_Heightfield bind { editorHeightfield tileSetCycle 1 } } ; keybindings to modify the brush size keybinding { key a toEditor TEditor_Heightfield bind { editorHeightfield brushSizeDelta -1 } } keybinding { key s toEditor TEditor_Heightfield bind { editorHeightfield brushSizeDelta 1 } } ; keybindings to modify the brush magnitude keybinding { key z toEditor TEditor_Heightfield bind { editorHeightfield brushMagDelta -1 } } keybinding { key x toEditor TEditor_Heightfield bind { editorHeightfield brushMagDelta 1 } }