Search results

  1. Immortius

    Tracking particular blocks in the loaded world

    Found it, the prefab for the block entity was not being set to null when changing to a block with no prefab. Added a unit test for this and corrected the error.
  2. Immortius

    Tweaking Stackable Chunks

    I would prefer to avoid it generating features outside of the generation pipeline if at all possible. Past initial generation, block changes are much more expensive - lighting has to be updated, events sent to generated entities, and all on the main thread currently. For performance, being able...
  3. Immortius

    Tracking particular blocks in the loaded world

    Can you please be a bit more specific about exactly what components are involved, and what is being removed/restored? What do you mean when you destroy a block? (Replace with air?) Anyhow, the expected behavior is that temporary block entities are transparent - they act like they existed before...
  4. Immortius

    Tweaking Stackable Chunks

    Yeah. I envision a conceptual level, a feature like a stone circle or tree would be a single element, so you could filter it out individually and completely. Something like a forest or biome would be a region that could be modified more fine grained. This one? The height is working well, but...
  5. Immortius

    Tweaking Stackable Chunks

    Thinking about how to get trees working without the second pass chunk generation stage makes me think it is time to address improvements to the world generation model. Some musings and thoughts: Firstly, it still seems sensible to have multiple classes doing passes over the chunk, each...
  6. Immortius

    VoxelShop (Voxel-Editor)

    Interesting article, I look forward to the next two parts. At the moment in Terasology we don't do any vertex reduction during world tessellation - our reasons may or may not be useful in you final part, but in brief: * Non-cubic shapes are first class citizens in Terasology. This doesn't...
  7. Immortius

    Tweaking Stackable Chunks

    I don't know where Panserbjoern got to with this, but I've started work on both vertical chunking and world load and render optimisation. This is currently in the Terasology branch "develop-vertical-chunking". At this point I have basic support for vertical chunks covered - in the Flat world...
  8. Immortius

    VoxelShop (Voxel-Editor)

    Our existing obj format support handles polygon mesh data, by automatically turning the polygon into a triangle fan. You might want to copy that.
  9. Immortius

    Modules

    Nickruig, the module-level selection will be going away eventually, replaced with game type and mod selection. The player will have to select a game type, which will select the module defining the game type and all its dependencies. The player would optionally select mods. In the mean time the...
  10. Immortius

    Tweaking TeraMath

    I will start a branch of Terasology shortly to investigate switching to TeraMath. Unfortunately I won't be able to eliminate VecMath completely because TeraBullet uses it. The one other thing I may investigate is object pools to avoid some object churn where math objects are frequently created.
  11. Immortius

    Console Commands

    See: https://github.com/MovingBlocks/Terasology/wiki/Console-Commands Edit: Ok, that is a bit out-of-date. See: http://forum.movingblocks.net/threads/multiplayer-arc.656/page-2#post-7835 for what has changed. I'll spend a little time updating the doco.
  12. Immortius

    Compound Shapes JBullet

    You can get that from the CharacterComponent.
  13. Immortius

    Compound Shapes JBullet

    Correct, you are not allowed to use the WorldRenderer, and I'm not going to give access to it. Additionally, I don't want to give access to Camera, as it needs to be replaced with an entity based approach (CameraComponent). What are you attempting to achieve?
  14. Immortius

    Compound Shapes JBullet

    develop for terasology has been changed to depend on version 1.0.2 of tera-bullet. This will require recreating the workspace to use.
  15. Immortius

    Compound Shapes JBullet

    develop
  16. Immortius

    Compound Shapes JBullet

    Fixed a bug in tera-bullet, and compound shapes were colliding with the world when I tested, so try now?
  17. Immortius

    Compound Shapes JBullet

    Iit is entirely possible I never added support for compound shape <-> voxel world collisions to TeraBullet. Or that it has never worked, since it was never tested.
  18. Immortius

    Compound Shapes JBullet

    Well, I guess test it against something other than the world (like some kinematic rigid bodies).
  19. Immortius

    Tweaking NUI

    I have added an onClosed() method for ControlWidgets.
  20. Immortius

    Project Logistics Arc

    I should just copy my NUI documentation to the wiki. I just like to use the forum as a staging ground.
Top