Search results

  1. overdhose

    Screenshots!

    so when do we get to /mount these? And will they be able to trample those annoying gooeys?
  2. overdhose

    First major news post of 2013!

    looking at some code atm, brain hurts! Do you still have that gun? I will work quietly, but feel free to bombard me with suggestions or whatever to upgrade the miniions mod untill I disappear again :P
  3. overdhose

    First major news post of 2013!

    Heya, glad to see things are moving forward. I like the test mod pony hehe ^^ Also Surprised that miniion mod is still listed... you should drop that thing now :P You have my blessing
  4. overdhose

    Archived Client Settings (GUI)

    yeah I considered that myself, even a full fledged ui editor :D Just as a fyi : the most work is actually copy pasting the same thing over and over again, the positioning was actually pretty fast, hence the editor idea
  5. overdhose

    Archived Client Settings (GUI)

    sneak peak : input screen must be about the most boring thing I did in Terasology. It leaves room to add stuff, if this seems unnecessary let me know I can center it more I was pondering what would be the best way to add mod related button configs, maybe a button with the mods name that opens...
  6. overdhose

    Reflective and refractive water

    I was also planning to make a controller screen btw where I could configure my controller... so still some work left. And need that to add some key bindings like for hiding gui.
  7. overdhose

    Reflective and refractive water

    yeah I am gonna finish my screens then start linking the functionality.
  8. overdhose

    Archived Client Settings (GUI)

    I was planning to add a whole interface to that thing so you wouldn't need to edit the file yourself. So human readable seemed less necessary. I'm gonna finish this round first, will look into changing it into gson. I only copied the config way of doing things tbh, I'm already glad I made it a...
  9. overdhose

    initial option changes committed in my dev

    initial option changes committed in my dev
  10. overdhose

    Reflective and refractive water

    don't see that one in the current config, what values should it have?
  11. overdhose

    Archived Client Settings (GUI)

    I wish I knew what you were saying o_O I'll uch make the screens and add options, you might have to add the trigger yourself
  12. overdhose

    Archived Client Settings (GUI)

    should this be kept together or split? optional bool animated_water_and_grass = 19 [default = false];
  13. overdhose

    Archived Client Settings (GUI)

    all that extra work what I wanted to do was toy around with the controller input :ninja: yet another screen I'll need to add after all this.
  14. overdhose

    Reflective and refractive water

    with a bit of luck I'll have all that by t'morra.
  15. overdhose

    Reflective and refractive water

    know what, I had input and mods, I'll add video and move the existing settings to it and add those you listed
  16. overdhose

    Reflective and refractive water

    make it optional? working on option screens, want me to add one?
  17. overdhose

    Archived Client Settings (GUI)

    InputSystem code private int linkMouseByConfig(int button) { switch(button){ case 256 : return 0; case 257 : return 1; case 258 : return 2; case 259 : return +1; case 260 : return -1; default: return 2...
  18. overdhose

    Archived Client Settings (GUI)

    to easily map mouse and key buttons, I used this trick : public int getKey(String skey) { if(skey.startsWith("MOUSE")) { if(skey == "MOUSELEFT"){ return 256; }else if(skey == "MOUSERIGHT"){ return 257; }else...
  19. overdhose

    Archived Client Settings (GUI)

    I'll include the hidegui and jumpbehaviour in input :
  20. overdhose

    Archived Client Settings (GUI)

    heh ok that shouldn't be to hard looking at the issues I'll see what I can do for the jumping and the keybinding, about keybinding though, I'm thinking of adding a seperate screen like modData called InputData, with matching proto. Might have azerty defaults though :P
Top