Jump to content

Josh

Staff
  • Posts

    23,211
  • Joined

  • Last visited

Everything posted by Josh

  1. Does the scene appear fine, otherwise? ATI hasn't fixed their driver bug they created recently that makes terrain not appear He doesn't need a depth buffer for that, since the depth is processed by the time the results are copied to that buffer.
  2. When you delete a face in 3DWS, it is marked as "hidden" and skipped when exporting a file. The face can still be selected and restored, because CSG solids are volumes, not polygons.
  3. Josh

    Multiplatform Madness

    It all depends on whether they allow C++ code on Windows Phone 7. Requiring C# only is suicide for their platform. Both Apple and Google realized already programmers don't want an "easy" programming language if it means they have to rewrite their whole program for one platform.
  4. So after a lot of learning and mistakes, I finally have Leadwerks Engine 3 running on OSX Snow Leapord, Lion, and iOS. Rather than write out a detailed blog, I'll just throw a lot of random thoughts your way: -OpenGLES2 is a nice blend of OpenGL 2 and OpenGL 3.3. I'm really surprised my OpenGL 3 shaders translate easily into OpenGLES2 shader code, with only a few changes. In fact, the iOS renderer looks exactly like the deferred OpenGL 3 renderer, except for shadows and some post-effects. The games I have seen running on the iPhone are severely underpowered compared to what they could look like. This little device has quite a lot of power, and you can be sure I will find the way to max out the visuals. -iOS uses it's own texture compression format. This sucks, because it means either you are using uncompressed textures for cross-platform compatibility, or you have to have separate textures for your iOS build. The OpenGL spec really should have a defined compressed format, but I guess there was some patent issue with DXTC compression, or something like that. -Lua and my other cross-platform libraries seem to work just fine with iOS, which is fantastic. I really had no idea when I started this project whether it would really work like I hoped or not, but everything looks good. -The iOS port was probably the hardest one, due to the use of Objective-C. Android should be pretty easy after this. The PS3 is another platform I am really interested in, and my guess is LE3 could be ported to PS3 in a few days or less. -OSX Lion has some very appealing characteristics related to Leadwerks Engine 3. I'm under NDA and can't say exactly what they are, but it's very good for Mac and graphics. BTW, the gestures they are adding to OSX Lion are really fantastic, and reason enough to get the upgrade. There's still a ton of work to do before I have an actual product ready to release, but the plan is working and we're on track for a fantastic 3D development system for a wide variety of platforms.
  5. OpenAL is usually installed on most systems since it is used in many games: http://connect.creativelabs.com/openal/Downloads/oalinst.zip
  6. Josh

    Compatibility

    There was a change a while back, I think around 1.40. Of course the latest will always work.
  7. The upgrade to LE3 will cost substantially less than a Unity license. I can't comment on the price of a new license, because I don't know at this time what it will be.
  8. Oh yeah, there's also Armadillo and ASProtect, and they won't require any changes to your code.
  9. The problem is actually that the light near and far ranges aren't set high enough to render the shadow. This can be set in the light properties dialog.
  10. I'm not sure what else you expect to see in that situation. It looks like that car is travellng about 100 MPH down a narrow dirt road.
  11. How does the iOS file system work? The standard C++ io functions compile just fine, but when I try to read a file it is always not found. Do I have to add files as resources in the Xcode project? I'd really prefer to store files in a real folder, not built into the project. Recompiling an app every time you add an art asset would be a pain.
  12. The Asset Store skin is going to display file thumbnails with transparency and no border. You can take advantage of this by making thumbnails of your items in .png format with alpha transparency. This will look especially good for 3D models. Here's an example: http://www.leadwerks.com/werkspace/files/file/217-codeblocks-template-for-leadwerks-builder'>http://www.leadwerks.com/werkspace/files/file/217-codeblocks-template-for-leadwerks-builder Downsampled images will look best because it will antialias the alpha map. These will also show up on the category pages: http://www.leadwerks.com/werkspace/files 3D models with alpha transparency will look similar to app icons in Apple's App Store, and look enticing to viewers.
  13. Move those tires inwards a bit to prevent problems. You can put the visual tire mesh wherever you want, but the physics tire should be inside the body.
  14. Seems like a perfect opportunity to use geometry shaders.
  15. 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.
  16. 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
  17. It's a lot more than that, he's got geometry adding to the surfaces, which is impressive.
  18. Leadwerks Engine 3 will actually allow you to reasonably make games with no programming at all, but the current version does not.
  19. They've added Blitz3D games on Steam, so I'm pretty sure it won't be a big issue.
  20. Your graphics card is not supported. However, it will work for Leadwerks Engine 3.
  21. What graphics card do you have?
  22. 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.
  23. No upgrade policy for 3D World Studio 6 has been announced.
  24. 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/
×
×
  • Create New...