Jump to content

Josh

Developers
  • Posts

    23,103
  • Joined

  • Last visited

Everything posted by Josh

  1. Josh

    Locals

    I am not sure. Do you know how to set breakpoints in VSCode? That might allow you to view the global vars.
  2. I think it might be a good idea to render point and spot lights in this manner using a sphere or cone mesh with a special shader. You would need the material set to use blending, and the mesh would have to reference the light it belongs to. That would save you from stepping through a lot of empty space.
  3. Josh

    Locals

    Makes sense to me. The local variable goes out of scope when the function finishes, and the variable is collected and the value deleted. In Ultra, we can actually make use the Lua's garbage collection
  4. Changes: Animations block will be preceded with the tag "ASET" "COLL" tag renamed to "PHYS" Vertex stride must be 88
  5. Here is some code if you want to make a Lua module: https://github.com/UltraEngine/Lua/tree/main/Modules The simpler way is to create a C API for the lib and interface with that, maybe using the Ultra buffer class to construct a data structure in memory.
  6. I am thinking about a new sample action-oriented game. What player view should it use?
  7. You have an old build in which I make a mistake and compile it using a main file I was testing. You must sync your project to get the updated EXEs: https://www.ultraengine.com/learn/projectmanager
  8. If you are using the debug build, it should not "hang". It should show an error and open the code file on the line where the error occurs.
  9. The error is on IntersectsPoint. I am testing it in the editor console. Ah, I see. There is an extra padding argument you must supply: aabb:IntersectsPoint(Vec3(0), 0) I will add an overload so this is not required.
  10. I am happy to say the #1 issue you voted on is now resolved in the just-released version 0.9.5, which works great with AMD cards.
  11. Version 0.9.5 is now live on the default / stable branch, on Steam and on our site.
  12. Here is an updated version of the textures. texture_templates2.zip
  13. The update that fixes this function's declaration is out now.
  14. Bug fixes Camera::SetMSAA renamed to SetMsaa Camera::SetSSR renamed to SetSsr
  15. To install this, extract the Zip file contents to Blender/4.1/scripts/addons, then in Blender select the Edit > Preferences > Addons menu, search for "MDL" to find this plugin, and check the box to enable it. @SpiderPig Since our PBR materials system is derived from glTF, this page might be useful to you: https://docs.blender.org/manual/en/2.80/addons/io_scene_gltf2.html
  16. What I am saying is I think this problem will automatically go away if I switch to GPU culling.
  17. The new MDL format is not yet a supported feature.
  18. The only required thing is "Desktop Development with C++" but I am not sure if this will work, since you are just trying to get the runtime working. https://www.ultraengine.com/learn/cppsetup?lang=cpp
  19. I think that alternative installer completely messed up your system.
  20. I do not know what those all are. You only need the file I linked to. Installing repackaged redistributables from a third party that "removes bloat" is highly suspicious. Installing Visual Studio Community Edition 2022 is also a guaranteed way to get it installed right.
  21. I do not know what that site is linking to. This is the Visual Studio runtime: https://aka.ms/vs/17/release/vc_redist.x64.exe
  22. Do you have this extension installed?: https://marketplace.visualstudio.com/items?itemName=actboy168.lua-debug When I installed it I was able to produce the same error.
  23. Why is there no .vscode folder here?
  24. You do have the Lua debugger extension installed, right?: https://marketplace.visualstudio.com/items?itemName=devCAT.lua-debug Do you have other Lua extensions installed that might be interfering with this? Projects can be created in any folder. This is the only mention I can find of this same error: https://stackoverflow.com/questions/76122037/how-do-i-set-up-to-run-love2d-lua-game-when-i-want-to-the-only-way-i-can-finagl Have you tried added a variable "program"? Do the JSON settings recognize this value, or does it show a yellow curvy underline under the word "program"? "program": "${workspaceFolder}/Controller_d.exe",
×
×
  • Create New...