Jump to content

Josh

Staff
  • Posts

    23,093
  • Joined

  • Last visited

Everything posted by Josh

  1. This is from my current build, once the SSR was fixed.
  2. It appears the effect is not working in the editor and is causing errors to be printed...
  3. In the editor or in a C++ program?
  4. Okay, it was just a missing shader combo.
  5. The reason for this has something to do with the camera depth prepass, which indicates a problem with the depth shader...
  6. It just needed a matrix update to be forced for some reason, to update the sprite entity showing the icon. This is fixed for the next build.
  7. I am going to leave this "unsolved" until we decide what to do with this.
  8. As for the font rendering, I need to modify the way the font texture works...
  9. It's normal that a plugin cannot be loaded from a zip archive, because under the hood this is using the Win32 function LoadLibrary. There may be a win32 function to load a library from memory, but I have not confirmed whether there the equivalent functions for Mac and Linux exist.
  10. Okay, I just had to make a small change to the way the zip file names are evaluated.
  11. I think the next step is to work this library into a standard Ultra C++ project so we can all test different files and see how well it works.
  12. Yes, I believe this is what I was asking for.
  13. 0.9.5 Everything updated, on Steam and standalone, this sorts out the terrain problem. Nothing had to be programmed, I just had to make sure all the executables, libraries, and shaders were really up to date.
  14. It doesn't appear the library supports loading files from memory, if the model consists of more than one file, like external textures, or in the case of glTF, an external binary file. I asked about it here but have not received a response yet: https://github.com/assimp/assimp/issues/5511
  15. Gotta go fast! Lots of updates came this week, followed by some really interesting tech talk. 3-23-24.zip
  16. 0.9.5 Standalone build is updated.
  17. I am starting to investigate the assimp library. Posting some code to come back to when I am ready to continue: Assimp::Importer importer; auto d = CurrentDir(); auto path = d.ToUtf8String() + "/Models/xxxxxxxxx.gltf"; const aiScene* scene = importer.ReadFile(path, 0); if (!scene || scene->mFlags & AI_SCENE_FLAGS_INCOMPLETE || !scene->mRootNode) { // Error handling if the file fails to load return -1; } auto node = scene->mRootNode; auto name = node->mName; // Process meshes attached to the current node (if any) for (unsigned int i = 0; i < node->mNumMeshes; i++) { aiMesh* mesh = scene->mMeshes[node->mMeshes[i]]; // Process the mesh as needed } // Recursively process child nodes for (unsigned int i = 0; i < node->mNumChildren; i++) { }
  18. 0.9.5 Updated the pro version on Steam to fix zip archive bug.
  19. Ah, I see. Right now you can just add a call to FileType() and it will trigger a rebuild of the archive directory structure. I will have a build up this morning that doesn't require this: #include "UltraEngine.h" using namespace UltraEngine; int main(int argc, const char* argv[]) { auto package = LoadPackage("Data.zip"); if (package == nullptr) { Notify("No Package Found"); } package->FileType(""); auto font = LoadFont("Fonts\\ZippedArial.ttf"); if (not font) Notify("No Font Found"); return 0; }
  20. I do not see this on my AMD 6600, but it does seem sort of familiar...
  21. That is some very strong banding that does not look like shadow maps.
  22. 0.9.5 Update to solve the duplicate components when entities are copied in editor bug. If you have any compiling problems, updating VS will solve it. I think I solved it regardless, but will hold off until tomorrow to upload another update.
  23. Now we will never know if my fix worked! But I think it probably will.
×
×
  • Create New...