Jump to content

extenz

Members
  • Posts

    43
  • Joined

  • Last visited

Everything posted by extenz

  1. I've set my mouses polling rate to 125 Hz from 1000, and it's not lagging anymore ?
  2. Hey dudes I wanted to play around with Leadwerks again, but every time I move my mouse my frames drop pretty low. But if I move around with W A S D Q E, it works perfectly fine. Changing render mode does not improve anything. I'm using Razer Deathadder Elite if that's got anything to do with it. Any ideas on what I should do? I've also attached a gif from the editor Thanks
  3. https://blog.sketchfab.com/announcing-the-sketchfab-download-api-a-search-bar-for-the-3d-world/ Sketchfab released their download API a few days ago which allows you to find models on Sketchfab and import them directly into your project from within the engine. It could be pretty neat but we already have the Steam workshop which is pretty much the same thing so I'm not sure if it's necessary. What do you think? ? Documentation: https://sketchfab.com/developers/download-api
  4. oh I didn't even notice it highlights the error lol I commented the highlighted line and uncommented the one above it and it works again
  5. Yeah, it's definitely Luawerks. I just replaced the Main.lua with a default one and it works
  6. This is the 2nd time I got this error. The first time I just made a new project and started over but this time I really don't feel like remaking it all again. Here's a screenshot: It worked just fine before I closed Leadwerks. When I reopened it without changing anything it just didn't work anymore. It doesn't say anything else. The error tab just says "Index out of range" and nothing else. No warnings either. The output tab says "Process Complete." I'm using Luawerks if that has something to do with it Any ideas, please?
  7. walking on rails etc. makes the character bounce and jumping off the rail shoots the character away
  8. Make sure to select the "First-Person Shooter" template while creating a new project. The player prefab is in Prefabs -> player -> FPSPlayer
  9. Yup, you can. http://steamcommunity.com/sharedfiles/filedetails/?id=634076765
  10. You can disable the Steam overlay. Right click on Leadwerks, go to properties and there should be something about Steam Overlay so just untick it and you're good to go. You don't need it anyway and if you want to take a screenshot then just use the official screenshot tool.
  11. Have you pressed F12? For the single viewport thing maybe? F12 is the default screnshot hotkey on Steam
  12. function Script:PostRender(context) context:SetBlendMode(Blend.Alpha) context:DrawText("Leadwerks", 20, 20) end That's pretty much all you need
  13. You can make the visuals look better, you just gotta have a bit of imagination For example this room was pretty boring at first, but with a bunch of stuff added it's much better. And the performance is not bad even on my old PC with integrated gpu. ( PS: This is real time right from the engine )
  14. The map "Observatory" looks like this: http://i.imgur.com/12oHEY6.jpg And the CryoChamber thingies look like this: http://i.imgur.com/QjrKAmW.jpg The shader is set to default. Diffuse, normal, specular and texture5 are all set correctly. Any idea how to fix that ?
  15. Nope, that doesn't work either. http://i.imgur.com/NEp7vFe.png I think there's something wrong with my Leadwerks
  16. Okay so I'm probably just stupid and doing something wrong because I haven't used Leadwerks in a while now but I need help with this little code - Script.box = "" --entity function Script:Start() local material = Material:Create() material:SetColor(1,0,0) end function Script:Collision(entity, position, normal, speed) self.box:SetMaterial(material) end I put it on a trigger ( Collision type is set to trigger, "box" is set to a CSG ) and everytime I enter the trigger the game just stops responding. I also tried Material:Load but that does not work either. Please help ;-;
  17. You could create a 2nd camera somewhere above the player and then render the camera to a texture. Something like this: http://leadwerks.wikidot.com/wiki:render-to-texture-security-cam
  18. If by AL you mean AI ( ai - artificial intelligence ) then: http://store.steampowered.com/app/469670/ You get the model, code and source files so that's a pretty good deal for $10
  19. File -> Open -> 07-AI and Events.map Cool little map But it mostly depends on what you want to do
  20. http://www.leadwerks.com/werkspace/page/tutorials/_/workshop-r11#section2
  21. extenz

    Prizes Shipping

    Do you ship outside of the US ?
  22. I don't think he wants to do that for every key on the keyboard tho I think he wants something like "Key.Any" instead of "Key.F", unfortunately I don't think there's anything like that.
  23. Put a pivot anywhere on your map, create a script, attach the script to the pivot you just created and copy & paste the code below. You should see something like this in the "Script" tab of the pivot you created. So just set it to whatever you want and you're good to go ! You could also add something like this ( in the updatephysics function ) to mute / unmute
×
×
  • Create New...