Jump to content

reepblue

Developers
  • Posts

    2,600
  • Joined

  • Last visited

Recent Profile Visitors

61,105 profile views

reepblue's Achievements

Mentor

Mentor (12/14)

  • Problem Solver
  • Dedicated
  • Conversation Starter
  • Very Popular
  • First Post

Recent Badges

1.3k

Reputation

20

Community Answers

  1. Try a manual copy. The updater broke on the XFORM project for me so I manually update the shaders each time.
  2. That's the exact opposite what it should be doing! 😭
  3. If you run this application from the editor, the argv[0] variable will be empty. When running it outside of the editor, the value will be the name/path of the application. I need this to work to get the name of the application to create the settings file. I can work around this, but I thought I should let you know. #include "UltraEngine.h" using namespace UltraEngine; int main(int argc, const char* argv[]) { auto name = WString(argv[0]); if (name.empty()) { Print("Application name is empty.") } return 0; }
  4. Tried to give this a try for my project due to my simple solution relying on the OpenGL3 implementation not working. It seems some API changes with both imgui and Ultra broke this. Do you plan to fix this in the future?
  5. I tried that and it didn't work on my end! 😱
  6. Getting this issue when generating probes in areas like this. Project sent in DM's as it has to do with the materials being used.
  7. Also make sure ULTRAENGINE is set to the path of the installation in System Environment.
  8. For things like the trigger/clip have a weird distortion although the thickness is set to 0.0 { "material": { "alphacutoff": 0.5, "alphamask": false, "backfacelighting": false, "blendsmoothing": 0.5, "color": [ 1.0, 1.0, 1.0, 0.49803924560546875 ], "displacement": [ 0.05000000074505806, -0.02500000037252903 ], "displacementblend": 1.0, "glossiness": 0.0, "metallic": 0.0, "pickmode": true, "roughness": 1.0, "saturation": 1.0, "shaderfamily": "Shaders/Unlit.fam", "shadow": false, "specular": [ 0.0, 0.0, 0.0 ], "texture0": "./trigger.dds", "thickness": 0.0, "transparent": true } }
  9. Subdivide a base by different X & Y values and you should get something like this.
  10. This seems to be broken in the latest beta. Note that the emission color is red but the emission on the cube is still white.
  11. These models worked in previous versions of the engine. Some time ago, it seems that bone scaling was integrated and now these models don't work as they did before. I'm uploaded material-less versions of these models. These are the original Leadwerks Models. I suggest adding a way to adjust the bone scaling manually. Also, here is video prove on how the editor used to see these models. animationscaling.zip
  12. It happens if the component is parented to another entity and is on the Flowgraph chart.
  13. Ok, figured out my problem, sorta. I had an extension that wrote custom settings. Although I uninstalled the extension folders after resetting my settings file, reinstalling the extensions fixed the issue.
  14. Yeah, it didn't load the XFORM project. I nuked my settings file first to get the Project Manager window and then I tried to open the project and got the hang. I went into the Ultra.json file for that project and erased the recentfiles table, resaved, and now the project loads, but the settings window crashes.
×
×
  • Create New...