Jump to content

reepblue

Developers
  • Posts

    2,504
  • Joined

  • Last visited

Everything posted by reepblue

  1. Can we have a function like this in UAK? I wrote this for Leadwerks to access the Window's Font Directory. //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- std::string GetSystemEnviroment(const char* pszEnv) { #ifdef _WIN32 return std::string(getenv(pszEnv)); #else // ???? #endif return ""; } My use case: //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- std::string GetSystemFontDir() { std::string path = "Fonts/"; #ifdef _WIN32 std::string syspath = GetSystemEnviroment("WINDIR"); path = Leadwerks::FileSystem::RealPath(syspath); path = path + "/Fonts"; #else // Not sure what to do here for Linux. DMsg("STUBBED: System font loading for linux!"); #endif return path; }
  2. I authenticated tonight. With the login box, I suggest you make the focus jump to the password box from the username upon hitting tab.
  3. Try deleting your Leadwerks.cfg and relaunching the editor. Uninstalling the editor doesn't delete the Documents folder.
  4. You can't draw to the context in vr. The result will print on the preview window but not the hmd. You need to make the text into a sprite in 3D space.
  5. Any post shader will fix this automaticly. This is so if you don't wish to use a post effect but you want to have the probes fixed. I plan on checking to see if the post stack of the camera, and loading this shader if the vector is empty. While the shader is light, it's not free. Also, this effects Nvidia and AMD Windows drivers.
  6. This is a blank shader that fixes an issue with the probes I brought up a while ago. I think I'm also getting a slight FPS boost, but what's important is that it doesn't seem to cost anything if you load one. Not sure why this fixes it, I was hoping I could find the fix in the probe shader but I had no luck. If anybody knows a better fix, please let me know. null.zip Before: Null Enabled:
  7. I would hook you up, but the code is pretty old and I had issues with Interpreter doing so. What functions do you need to call? Unless it's math functions, it's not worth it. If it's actor assigning, please take a look at this.
  8. Wasn't Stream::EOF() replaced with Stream::Ended()? Although EOF is faster to type, it conflicts with macros in some cases.
  9. I'll go through it again tonight. One thing I didn't like was that the beta had dependencies relating to VR and such included. I'm not sure if the actual project actually uses them. Also, you're keeping the "UltraEngine" namespace for the Ultra App Kit?
  10. This is a good step into turning the mouse look into an axis which can be set via an action binding system. You can also make a multiplier value for sensitivity. Thanks. Also, hopefully you got hold of an XInput device since the initial implementation of controller support.
  11. What is it exactly you're trying to do? You want to expose functions with glue code? Sorry for being so late, this just recently grabbed my attention.
  12. Gonna be honest, I was doing something the past week and it was really nice to youtube all my questions.
  13. All jokes aside, looks like a modern light theme.
  14. It'll probably be nice to have for the level editor too at some point.
  15. UAK is made with a mouse and keyboard in-mind. It's really made to be used for applications that use a mouse and keyboard.
  16. Really good. It seems you're almost at the finish line. Speaking of what's left to do, have you decided on vs project generation? Or are you going to do what you did in Leadwerks? (Copy solutions, rename a string macro.)
  17. The arrows and check boxes use vector graphics. This is why you need to load the svg plugin. Hopefully this was fixed/will be before release.
  18. It's been a year and a half, how did I miss this?
  19. The beta is broken and Josh has been using his time with the new engine. You can always zip package the game yourself of you need the latest beta for VR.
  20. There is a balance. Much like Slippery Brick said, reviews are the key. I think allowing for honest takes is better than paying people to talk about how wonderful something is. The Cherno is good cause he does C++ tutorials and GamesFromScratch is also good because he covers game development tools. (He did mention Leadwerks in the past.) I also wish to push videos with UAK and the new engine although I'm not really booming with charisma. I have a lot of Source Engine users following me that I'm sure would be very interested.
  21. You should make it very specific what is and isn't ok. I'm sure people will want to create their own tools to fit their needs, but I understand you not having competition/confliction with the upcoming editor. I think you can ask Games from scratch and others to get the word out and do quick run downs. I wouldn't really force this as people tend to hate the shilling on that platform. Overall the choice is there's and I think the tutorials and showcases will come naturally if the product is good.
  22. The issue is that instead of a few major forums and news sites, communities are now thousands of various discord servers. I posted it in the few I was in but that's only 0.0001%. I think once you give us the ok to start sharing public videos of the new engine/app kit on Youtube and such, more people will stumble across it. I'm sure people making UAK tutorials will help with sales.
  23. Or you can use Premake/CMake and have all projects point to where the SDK is installed.
  24. You can manipulate the character controllers values if you're using C++. Check Entity.h or Character Controller.h as I'm not near my PC atm.
×
×
  • Create New...