Jump to content

Slastraf

Developers
  • Posts

    705
  • Joined

  • Last visited

Everything posted by Slastraf

  1. I run this on VS 17.8.3 on Win10 . I will repair my installation once again because all the updates were already installed and try this again in a bit. I will also reinstall Ultra Engine stable. The very first time i installed Ultra Engine the UltraEngine.h header was not detected or missing. Must be a dwonload issue because i reinstalled it and then it was included.
  2. Can you take a look in your folder C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC or similar and please tell me which version is installed there ? From your screenshot i cant ttell
  3. I got some advice from my little helper phind The error LNK2019 is a linker error that occurs when the linker can't find a symbol it needs. In your case, the symbol `__std_find_trivial_4` is not found. This symbol is a function in the C++ Standard Library that is used for finding a value in a range. The number '4' in the symbol name indicates the size of the type that the function is working with [Source 0](https://github.com/googleapis/google-cloud-cpp/discussions/11929). This error can occur due to several reasons: 1. **Mismatched Compiler Versions**: If different parts of your project were compiled with different versions of the compiler, you may encounter this error. Make sure all parts of your project are compiled with the same version of the compiler [Source 2](https://github.com/actions/runner-images/issues/6091). 2. **Incorrect Library Linking**: If you're linking against a library that was compiled with a different version of the compiler, or if the library was compiled with a different runtime library setting, you may encounter this error. Make sure you're linking against the correct libraries and that they were compiled with the same settings as your project [Source 2](https://github.com/actions/runner-images/issues/6091). 3. **Missing Library**: If the library that contains the `__std_find_trivial_4` function is not being linked, you may encounter this error. Make sure that the library is being correctly linked in your project settings [Source 4](https://github.com/Exiv2/exiv2/issues/2429). To resolve this issue, you can try the following steps: 1. **Rebuild the Project**: Try to clean and rebuild your project. This will ensure that all object files are recompiled and linked with the correct settings [Source 2](https://github.com/actions/runner-images/issues/6091). 2. **Check the Compiler Version**: Make sure all parts of your project are compiled with the same version of the compiler. You can check this in the project properties in Visual Studio [Source 2](https://github.com/actions/runner-images/issues/6091). 3. **Check the Library Linking**: Make sure you're linking against the correct libraries and that they were compiled with the same settings as your project. You can check this in the project properties in Visual Studio [Source 4](https://github.com/Exiv2/exiv2/issues/2429). 4. **Check the Runtime Library Setting**: Make sure that the runtime library setting for all parts of your project is the same. You can check this in the project properties in Visual Studio [Source 2](https://github.com/actions/runner-images/issues/6091). If the error still persists after trying these steps, you may need to seek further assistance. It's possible that there's a bug in the compiler or in the library that you're linking against. In that case, you should report the issue to the maintainers of the library or the compiler.
  4. I have the same components as you in visual studio installer now but sadly the same errors and warnings, also with a new project. && on both dev and stable versions of the engine and each with new projects same errors
  5. Thank you for sharing. I already see you have Windows 10 SDK installed. I run a windows 10 system but had windows 11 SDK installed and not windows 10 SDK . I will update here shortly if this is a fix.
  6. Also I needed to install an ATL Component vsconfig.txtof Visual Studio Installer to not have missing headers.
  7. Yes I have the latest VS 2022 version installed on my system, the vulcan API , the recommended redistributables. I can compi;le an unreal engine game for example so it is not completely broken. I can provide more information in private. I am updating gfx drivers at the moment but should not have an impact.
  8. I tried this on new projects on both dev and stable multiple times This happens for me with a fresh project and the stable version. Also there are a lot of warnings about PDB Severity Code Description Project File Line Suppression State Details Warning LNK4099 PDB 'UltraEngine_d.pdb' was not found with 'UltraEngine_d.lib(dMat4.obj)' or at ... Ultra Engine\Projects\Testcpp\.vs\Debug\UltraEngine_d.pdb'; linking object as if no debug info Testcpp ... e\Projects\Testcpp\UltraEngine_d.lib(dMat4.obj) 1 For example
  9. For now I can only successfully run lua projects
  10. Hello I have just got Ultra Engine and have not got it to compile yet. I added missing ATL modules inside visual studio installer, made a new c++ project multiple times and set the optimization to disabled in the project settings. Need help at fixing these errors. The Project is called StereoWindow and i have the exact same problem with another project.
  11. That operation would be Join in blender and also should have no effect on the weights of the rig.
  12. Also I would try to seperate the loose parts that have lower poly count and then use decimate modifier on separate parts to have your desired polycount then add them back together.
  13. Yes, you can use decimate modifier in blender. However there might be small errors with the textures but generally not noticeable.
  14. This is a good starting point
  15. Slastraf

    Astrocuco

    I really like the camera movement, even when the character is running it shakes a little. This adds much weight to the animation
  16. Slastraf

    Voxel raytracing

    lightning looks really good
  17. Hi I just wanted to show these screenshots of game ready "deamons" that I modeled & textured for my game RealmRise. more and updates: https://discord.gg/AaNnRAhmJj
  18. this is not the prime beginner example for recursion, too
  19. you need to iterate svotnodes pseudocode foreach svotnodes as svotnode : level = svotnodes[index].params[2]; if level == maxlevels -1) : [...] for n < 8: if (SVOTNodeContainsNode(svotnodes[index].child[n], x, y, z)) { foreach svotnodes as svotnode2 : level2 = svotnodes[index].params[2]; if level2 == maxlevels -1) : [...] } if you want to find the "terminal node" you need to iterate over all nodes, however I dont think the index changes so that might be a problem. Sorry dont have much time to look over this
  20. I dont think it is possible without directly accessing the mesh in c++. You need to make a set for different body parts (legs, arms) and set the object's origin. In Blender additionally apply rotate, scale
  21. Have you set your object collision type to debris ? It collides with scene and props, but not with itself. Here you can find a quick example but you should try out Collision.Debris or find the index for it https://www.leadwerks.com/learn?page=API-Reference_Object_Entity_SetCollisionType
  22. lerp = Math::Lerp(2, 0, 0.5); will always make the player height zero lerp = Math::Lerp(camera->GetPosition().y, (playerheight*cdown ), 0.5); does this make sense to you ? camera->GetPosition().y, may be wrong but you need to get the y part of the vector of getposition also you need to remove (makes no sense): while (true) { // remove this line camera->GetPosition();
  23. //might not work but is pseudo code // Vec3 ccamerapos = ccamera->GetPosition(); // ccamera->SetPosition(0, Math::Lerp(1, ccamerapos->GetY(), (crouchedBool*(characterheight)+crouchHeight 0);
  24. you need this to be a function with a tick and for every tick your camera moves a tiny bit more towards the target position. You could use Lerp in that function : https://www.leadwerks.com/learn?page=API-Reference_Object_Math_Lerp
×
×
  • Create New...