Jump to content

All Activity

This stream auto-updates

  1. Today
  2. Yesterday
  3. Hello, I'd like to suggest that a 'scatter' tool or brush be added to Leadwerks in the future. The purpose is to quickly drop down things like debris in a level. This would have to work with both level brushes (the box, wedge, cylinder, and cone) and imported models (for both level geometry, like floors, and props, like tables). It should use physics and collision to allow for objects to be dropped onto surfaces. Like the brush for terrain, you should be able to select which models to use for your debris. And it should have parameters for brush size (how far debris is scattered), amount (how much debris is scattered), etc. Thanks.
      • 1
      • Like
  4. 5.0.1 Version 5.0.1 is now on the default branch. This removes the need for a system environment variable for C++ projects, and fixes several bugs. Beta and default are in sync. Version 5.0.0 is now archived.
  5. camera:SetRange(near, far) will do it.
  6. There is no "current" camera. There's just cameras. You could do this: local entities = world:GetEntities() local n for n = 1, #entities do local camera = Camera(entities[n]) if camera ~= nil then if camera:GetHidden() == false and camera:GetProjectionMode() ~= PROJECTION_NONE then --this is probably the camera you want end end end
  7. Without knowing her name?
  8. A camera radius culling feature would be great. My scene is getting very large and detailed and as a result the performance is dropping a fair bit. Being able to set the visible radius around the camera in the editor would be really beneficial in this case and would stop everything in the scene rendering simultaneously or having to hide far away items manually to improve performance.
  9. Last week
  10. If I add FPSPlayer.lua to one of characters, it doesn't fall
  11. They don't have a collider. If you set them to use character physics, they will have a cylnder coillider.
  12. Anyway...
  13. Set their physics mode to use character physics.
  14. @Josh The fact that characters fall through the floor with the same properties as a non-falling cube is also related to this?
  15. 5.0.1 beta Full update of C++ lib and Lua EXEs. C++ header and entity definition files updated. Think it's time to release this on default branch soon.
  16. Most of the content will work with some adjustments, but it's not set up and ready to work with version 5.
  17. So, the question is in the title. I tried to load the Zone DLS, and when I launched the game, I got multiple material errors (Fig. 1). And when the game is loaded, I couldn't move the camera—it froze. Everything works fine in Leadwerks 4.6. When I placed characters from other DLCs (Fig. 2) and set their physics properties like cube's properties, characters still fall through the floor (Fig. 3). Although in Leadwerks 4.6 everything works correctly and characters don't fall through the floor.
  18. Can you please post a screenshot that shows this? It's hard to understand otherwise.
  19. Ha! It works just fine: #include "UltraEngine.h" using namespace UltraEngine; int main(int argc, const char* argv[]) { //Get the displays auto displays = GetDisplays(); //Create a window auto window = CreateWindow("Leadwerks", 0, 0, 1280, 720, displays[0], WINDOW_CENTER | WINDOW_TITLEBAR); //Create a framebuffer auto framebuffer = CreateFramebuffer(window); //Create a world auto world = CreateWorld(); //Create a camera auto camera = CreateCamera(world); camera->SetClearColor(0.125); camera->SetFov(70); camera->Move(0, 2, -8); camera->SetScale(2); auto font = LoadFont("Fonts/arial.ttf"); auto tile = CreateTile(world, font, L"Здравствуйте"); //Main loop while (window->Closed() == false and window->KeyHit(KEY_ESCAPE) == false) { world->Update(); world->Render(framebuffer); } return 0; }
  20. If you were talking about integers, you might be right. But if I set a value to “float” in the component settings, I'll probably need decimal numbers most of the time. If I really don't need decimals, I'll just use integers.
  21. Our own game tournament will start December 20th.
  22. Hi Everyone, I've been super-busy, but I did create a new production bed to share with you all...it's really fun: "THE DIXIELAND BAND" You'll find it here: https://soundimage.org/jazz-big-band/ As always, it's 100% free to use in your projects with attribution, just like my thousands of other music tracks, sounds and images. Enjoy! :-D
  23. Understood! thanks for the reply
  24. Help Leadwerks grow by sharing your experience! Please consider leaving a review on Steam. Your feedback means a lot!
  25. Damn, appreciate the quick response! and thank you for the fix
  26. This problem has been fixed in 5.0.1 beta, which is available if you opt into the beta branch.
  27. Title sums it up, when I start a project and try to run the start map I get this error. Anyone know how to fix this? I tried deleting the file and that did nothing and I even start a new project thinking about something was corrupt and face the same issue. my current hardware: CPU - 13th Gen Intel(R) Core(TM) i7-13700KF GPU - AMD Radeon RX 9070 XT RAM - 64.0 GB Speed: 6400 MT/s Slots used: 2 of 4 Form factor: DIMM nvme - 500gb
  1. Load more activity
×
×
  • Create New...