Jump to content

Josh

Staff
  • Posts

    23,321
  • Joined

  • Last visited

Everything posted by Josh

  1. You are correct, but since that was the variable being passed to the function anyways, it won't make any difference.
  2. Here are the inputs for the lighting function: RenderLighting(material, materialInfo, vertexWorldPosition.xyz, n, v, NdotV, f_diffuse, f_specular, renderprobes, ibldiffuse, iblspecular);
  3. 1.0.3 Added "Generate Material" option when you right-click on any image file in the asset browser. Updated some icons. Bringing color back in slowly.
  4. Josh

    Grass Shader

    You don't need texcoords unless you are using normal maps.
  5. There is a discount for everyone. The discount is built into the price, because the price is very reasonable.
  6. Josh

    Acoustic Tiles PBR

    This material was great for testing and it looks cool with displacement.
  7. Josh

    Generated Material

    Material was generated automatically for a set of PBR textures I downloaded. The algorithm guesses which textures go in which slot, and if needed compresses them with the optimal format and converts them to DDS. The orange texture is ambient occlusion / metal / roughness, which was automatically merged into a single image from separate files.
  8. How many models and limbs are we talking, total? 20? 300?
  9. Well, the way things are right now there is no need for a file requester. You can just select the item you want from the combobox, which is much simpler.
  10. based on this screenshot, I think everything is in good shape. All those numbers are reasonable. You can see the rendering time on the CPU is only 2 milliseconds, so it is likely you are GPU-limited. this means the shaders just process as fast as the GPU allows and there are no other bottlenecks.
  11. I already started doing this for materials. Undecided on shader families.
  12. 1.0.3 In this build the mouse has to be dragged a certain distance before it will start drawing a new brush. This is intended to reduce the number of accidental object creation actions that can happen when working. If you press the mouse and move a couple of pixels, then release the mouse, the underlying object will be selected, instead of how previously object selection had zero tolerance for mouse movement. Grab-and-rotate now works in 3D viewport as well. Hold Alt to rotate pitch / roll. I'm not going to tell you what the rules are for which is chosen, just try it and see if it feels intuitive to you.
  13. The new scaling tool actually allows this, with no changes. It works on all objects. For creation, I plan to make it so environment probes get drawn like a brush when they are created.
  14. The material files currently just store the name of the shader family. They do not store the "Shaders" folder to the path, even though the files are located there. I can't say exactly why but it feels intuitively right to me. So explicitly declaring the file extension also feels like a strange thing to do.
  15. There's an update up now that adds the behavior I described above to the rotation tool. See how it feels.
  16. Josh

    Untitled.jpg

    Yes, it just works.
  17. Any money that was spent on the Ultra Engine early access subscription will be discounted from the price of a new license, for any version of Ultra Engine.
  18. How do you feel about the rendering modes? I haven't implemented the solid / textured / lighting rendering modes that Leadwerks and Hammer have but I'm not sure these are needed.
  19. Resizing isn't implemented in the 2D views yet. One alternative approach for rotation in the 2D viewports would be if you just click and drag anywhere on a selected object, it starts rotating around the center. This would be like the way movement in 2D viewports currently works.
  20. 1.0.3 Crude implementation of terrain sculpt. Select "Heightmap Terrain" in the objects list, create a terrain, select the terrain toolbar button, start sculpting. Alt key digs. Terrain is using 16-bit floating point format for heightmaps, so you can raise or lower the terrain with no constraints. I had to hack the Newton library to add support for half-floats, and I am a little bit proud of myself for this.
  21. Do you happen to know if your distros are using Wayland with an X emulation? If so it would be a bug in that implementation.
  22. Josh

    Vertex Tool

    In Leadwerks, the entire viewport code is all in one 6000 line file, which was basically impossible to edit without breaking functionality. In Ultra each mouse tool is a separate class, which makes it much easier to add and modify features.
×
×
  • Create New...