Jump to content

Josh

Staff
  • Posts

    23,126
  • Joined

  • Last visited

Posts posted by Josh

  1. 0.9.6

    • Added right-click on file "Convert File to XXX..." menu item for all converters in asset browser.
    • Added right-click on folder "Batch Conversion" menu item in asset browser.
    • Like 1
  2. Doing that would require two things.

    With really big worlds, you need a terrain system that recursively subdivides, because normal terrain LOD isn't big enough. With a normal terrain LOD system where the terrain is divided into patches, eventually you can zoom out so far that each patch is just one pixel big. So you need a different way of handling that.

    You also need a way to warp the terrain to a sphere, and have it affect physics, raycasting, culling, as well as the rendering.

    I plan on doing stuff like this in the future, but not with our standard terrain system.

  3. I am considering moving terrain back to work the way it did in Leadwerks, where it was always centered around the origin and did not respond to rotation or positioning. This would simplify vegetation system quite a lot because I can handle all coordinates in world space. Otherwise, you have to do a lot of transformations and it is hard to get things to line up correctly. I think it also makes a better experience in the editor. Movable terrains can be prone to accidental movements, and having them selectable degrades the performance because the outline effect is quite expensive since it requires rendering the object twice.

    • Sad 1
  4. 0.9.6

    • Added Delete option when you right-click on a mesh in the asset editor.
    • Probably fixed bindless texture sampler uniforms.
    • Exposed Object:AddHook to Lua (experimental!).
    • Added some string functions for Lua.
    • Component updates now happen after animation is updated.
    • Like 3
    • Thanks 1
  5. 0.9.6

    • Fixed bug in editor where animated models would not appear the first frame, in the first viewport.
    • All directional light shadow cascades now render each frame in editor.
    • Fixed some glitches in the outline post effect.
    • Like 2
    • Thanks 1
  6. Hi, I just tried the following with a GEForce 1080 and the latest driver 552.12.

    • Deleted the file "C:\ProgramData\Ultra Engine\settings.json" to reset all settings.
    • Launched Ultra Engine Pro on Steam, default branch (0.9.5)
    • Created a new project.
    • Opened the Visual Studio solution and compiled for debug and release.
    • Ran the game, and the start.map game opened and ran.

    Questions:

    • Are you launching from the editor or from Visual Studio?
    • If you are in the editor, do you have the start.map scene open in the editor when you launch?
    • This is a new project, right, not an old project that was previously created with the Vulkan build of Ultra?

    It sounds like maybe the program is not loading the starting map, so there is no camera and just a black screen.

    • Like 1
  7. The Ultra string classes are not exposed in Lua. Ultra uses wide strings, which do not work well with Lua strings. However, all command interfaces between C++ and Lua that pass strings convert UTF8 (Lua) to wide strings (C++) and back.

    I have added the string methods as functions that can be used like this:

    s = "test"
    s = Right(s, 1)
    s = Trim(s)

    I also added Len(s), which is like Ultra's GetSize() method for the string class.

    This will be available in the next build.

×
×
  • Create New...