Jump to content

Josh

Staff
  • Posts

    24,629
  • Joined

  • Last visited

Everything posted by Josh

  1. Seems like a perfect opportunity to use geometry shaders.
  2. There's a new evaluation kit coming this summer that will allow you to try more functionality out. We're waiting right now for ATI to fix a bug in their drivers.
  3. Those values are really high. Change lines 190-193 to this: local pivot local suspensionlength=0.2 local springconstant=20.0 local springdamper=150.0
  4. It's a lot more than that, he's got geometry adding to the surfaces, which is impressive.
  5. Leadwerks Engine 3 will actually allow you to reasonably make games with no programming at all, but the current version does not.
  6. They've added Blitz3D games on Steam, so I'm pretty sure it won't be a big issue.
  7. Your graphics card is not supported. However, it will work for Leadwerks Engine 3.
  8. What graphics card do you have?
  9. All the modeling programs pictured are supported because they all export .fbx or .dae files, and the Leadwerks Engine SDK includes a tool to convert .fbx and .dae files to the internal format used by the engine.
  10. No upgrade policy for 3D World Studio 6 has been announced.
  11. This is a bug in ATI's current drivers. We've reported the issue to them. They emailed me about a week ago and said they were working on it. I will follow up with them and see when the fix is coming: http://www.leadwerks.com/werkspace/tracker/issue-165-terrain-textures-bug-radeon-hd-5850/
  12. Do you mind if I build this effect into the LE3 renderer? It could work for rain, too.
  13. The maximum world size is about the same as Crysis.
  14. There's a tentative list of features here. Please keep in mind some of these things have not been attempted yet, and the final spec may change: http://www.leadwerks.com/werkspace/index.php?/page/le3 It works out to be cheaper overall if you buy LE2 and upgrade to LE3. No word on the upgrade price yet, but I will make it so the LE2 + upgrade costs less than a new LE3 license.
  15. That image was posted by me using the admin account. Of course the wheels in your model have nothing to do with the actual location of the tire ray cast, so make sure that is inside the physics body of the chassis. You posted another video showing vehicles with very high spring constants, causing them to jump all over. Those spring values are very important and vary based on mass and spring length. Adjust those values until you get something that is loose enough to not jump around, but tight enough to hold the chassis up. Beyond that, I suggest posting a demo so we can see the behavior for ourselves.
  16. Josh

    Logo's

    I don't have any plans to ever force this on the user.
  17. Josh

    Texture Tools

    File Name: Texture Tools File Submitter: Josh File Submitted: 15 Jun 2011 File Category: BlitzMax Source code for Leadwerks Engine 2 texture tools. Click here to download this file
  18. Yes, it's not meant to be used multiple times with different resolution buffers or different settings. If you change settings it will have to recreate buffers twice each frame. Use regular plain rendering with just lighting, no shadows, for your low-res reflection passes.
  19. That is a really clever idea.
  20. 3d world studio 6 will share a lot of code with the leadwerks engine 3 editor. It's in development.
  21. The Lua implementation in LE3 goes into a lot of detail with code stepping and debugging. It makes things very transparent: http://www.leadwerks.com/werkspace/blog/1/entry-658-lua-and-c-debugger/ http://www.leadwerks.com/werkspace/blog/1/entry-655-tools-and-stuff/ I don't think supporting five different scripting languages through a third-party JIT compiler that may or may not match the original language behavior 100% is going to provide as good a result. I'd rather choose one script language and put all my effort into that. LuaJIT also makes Lua about as fast as C#, and I can turn it off and on with a single command.
  22. That spring constant looks WAY too high, and would result in the bouncing behavior you see here.
  23. You can pack model scripts into .pak files but I recommend leaving scripts that get included by other scripts as either the origjnal .lua files, or .luac if you want encrypted precompiled byte code.
×
×
  • Create New...