Search results

  1. SoniEx2

    Suggested Tape Drives

    So there are these 2 minecraft mods which add tape drives. They let you put music in the game and play it back. They both use DFPWM, which is a modified form of delta-sigma modulation. It's a really neat compression format <3 Anyway I wanna be able to play songs in terasology, because that'd...
  2. SoniEx2

    Suggested Prefab constructors

    There should be a way to invoke constructors from prefabs, so that component fields can be set to private (requiring the use of accessors instead).
  3. SoniEx2

    Suggested Move fields in Block onto Components

    All (or at least most) of this, from the Block class: // Overall behavioural private boolean liquid; private boolean attachmentAllowed = true; private boolean replacementAllowed; private int hardness = 3; private boolean supportRequired; private EnumBooleanMap<Side>...
  4. SoniEx2

    Suggested File Transfer API

    So I heard Terasology has an in-game computers mod. It would be cool to be able to save files from those computers onto my hard drive and send files from my hard drive onto those computers. The idea I had for this was 2 simple client API methods: Optional<InputStream> loadFile()...
Top