Jump to content

Paul

Members
  • Posts

    83
  • Joined

  • Last visited

Everything posted by Paul

  1. Lua sandboxing, but I'm not sure how well this works with the engine though. http://stackoverflow.com/questions/1224708/how-can-i-create-a-secure-lua-sandbox http://lua-users.org/wiki/SandBoxes
  2. What do games with realistic projectile physics (such as bullet drop, bullet travel time, ricochet, etc) use?
  3. Isn't that a cylinder shape though? What I mean is having a physic body collide with an animated character's body part, like their head or leg.
  4. How would you get the effect of physic collisions on animated characters?
  5. Would it be possible to emulate the effect somehow? I wanted to give guns a heat haze effect or use it for a flame thrower, but with other shaders conflicting, I'm wondering if a work around is possible.
  6. Do you know if anyone has successfully done this? From what I've read too its to do with the rendering pass, but I had the impression the problem existed before the framework.
  7. This is the problem I'm talking about I had hoped to use the heat haze more frequently, but I need a way to work around this problem.
  8. Is there a work around with getting the heat haze and water effects as multiple layers?
  9. Is this the same reason the heat refraction messes with water?How do other games get around the problem?
  10. Wanted to rotate the night sky to give the effect of the earths movement.
  11. After playing around with the command line it seems a .netmodule can also be created.
  12. What I mean is does the C# wrapper need to be compiled as a net dll, or can the source code be included into the game's solution?
  13. I thought that required a skybox not a skydome?
  14. Can the wrapper be embedded or compiled into the main exe?
  15. Is there any examples of using a skydome, preferably working with framework?
  16. If you have any plans to compile for x64, you shouldn't be using int to hold a pointer. stdint.h has a portable intptr_t type.
  17. Maybe load the model and set the data with SetEntityKey?
  18. Even at intensity 0.1 it appears too bright.
  19. Because its an integer division. Try 200.0f / 800.0f
  20. But I still wouldn't use it for something like LeadWerks. Some of the way PureBasic handles things is a real pain.
  21. Then there is no reason for a procedure to contain the structures and constants.
  22. #Engine_library isn't assigned a number, plus its in a function. I find using #PB_Any is better, which a generates a number instead.Don't really see the point of "Init_Engine_Enum()" it doesn't do anything and just contains the constants and structs. Macro _leInitialize(le_dll) le_lib=OpenLibrary(#PB_Any,le_dll) If le_lib _leInitAllFuncs() Else lePrint(le_dll+" can't be loaded.") EndIf EndMacro
  23. Using the CopyStructure command. Depends what its been copied to, a variable should be ok, but if its an allocation then it needs to be freed.
  24. That too can be a problem, if you don't copy the result the following call to the same function will over write it.
×
×
  • Create New...