Home Forums Development discussions Questions

Tagged: , ,

Viewing 15 posts - 61 through 75 (of 95 total)
  • Author
    Posts
  • #668
    Mury
    Participant

    Okay,I figured it out.There is room for improvements in SDK tho!

    #669
    Sponk
    Keymaster

    Pull requests are very welcome :p

    #670
    Mury
    Participant

    Does Neo-engine have any kind of optimisations for 3d? Like frustum culling and such?

    #671
    Sponk
    Keymaster

    Yes, frustum culling is included. Everything is rendered using VBOs to get a high transfer rate.
    One of the features that is missing is hardware instancing for things like vegetation. Another feature that would be important is terrain rendering.

    There is very experimental (and slow) support for occlusion culling.

    All in all: There is much work to do to get the 3D renderer competetive.

    The current system has two different renderers: The fixed function and the GLSL based renderer.
    It would be possible (and probably very useful) to implement a deferred renderer as well.

    Most of my current work is focused on the script interface and refactoring and documenting the existing engine.

    #672
    Mury
    Participant

    Im pretty cool with what we got so far.Because if Im to make a 3d game it would be something like Doom or Wolfstain or something 2.5D roguelike.So stuff back from 2005 or so,nothing fancy.But all this after Ill add more to the 2D.Thanks for your answer.Also Im looking forward to see more doc on how things are aranged inside the engine.I have not took a deaply look into it yet…

    #673
    Mury
    Participant

    Is it okay if only AABB collision will be implemented and latter on slopes and circles?

    #674
    Akira_San
    Participant

    Cool, 2d collisions.

    #675
    Mury
    Participant

    Quick question! If you download the project demo YoFrankie and use it from Maratis you`ll see that the logs are falling much more faster(realistic).And also the loading time on Neo is slower.Any ideas why?

    Edit 1: If you download BoxesRoom youll see that the loading time takes ages and finally itll crash.

    • This reply was modified 9 years, 3 months ago by Mury.
    #677
    Mury
    Participant

    It seems like every project starts slower than maratis 🙁 Why??

    #678
    Sponk
    Keymaster

    It depends. If you compiled the debug version all compiler optimizations get turned off for example. Another difference could be that the texture and sound loaders were rewritten to be independent of DevIL since that does not run on Android. There is nothing else that made a huge change to how levels, scenes and all the data are handled.

    #679
    Mury
    Participant

    When I`m aleardy in a project tha game starts fast.But when I want to load a project it takes much longer than Maratis.Also the 2D collision is going fine!

    #680
    Sponk
    Keymaster

    When launching the editor or the player?

    #681
    Mury
    Participant

    editor

    #682
    Mury
    Participant

    Be prepared.Tons of new stuff coming to Widget.lua

    #683
    Sponk
    Keymaster

    I’m looking forward to it 😀

Viewing 15 posts - 61 through 75 (of 95 total)
  • You must be logged in to reply to this topic.