Jump to content

SpiderPig

Developers
  • Posts

    2,272
  • Joined

  • Last visited

Everything posted by SpiderPig

  1. Rather than navigate back to the file browser I'd like to be able to edit an asset by either double clicking it or right click and selecting "Edit" in the scene tree.
  2. I'm browsing for a material that will be common over several GLTF models. After saving the models with the material assigned I've found by editing the one material it does not update the models that have it assigned. Upon further inspection of the GLTF file I saw no file reference to the material. It seems it has just copied the material into the GLTF file. Is this intended behavior?
  3. When saving this model in the asset editor it automatically generates PNG files even though everything is DDS. PineLarge_001_LOD1.zip
  4. The ability to drag a material from the project's file browser onto the model or the mesh name in the model tree view would be nice.
  5. For me, clicking this takes me to a different projects folder other than my currently open project's directory in which the model resides. I think it's going to the last open folder or something... which is useful so long as it's within the current project think.
  6. Could we get a "Rename" and "Delete" option when we right click an asset and a "Create Material" option when we right click blank space?
  7. Would be nice to see the outline drawn around the appropriate mesh when selecting the mesh or material in the model tree.
  8. Just a thought. If I edit a models material that gets saved into a gltf file I would then like to export said material to a file and have the model use that file instead of storing it inside the gltf. I know I could just create a material and load that instead, but there are some cases where I don't know that's what I want and I may already have the material set up for that model. I think this will be useful for models with multiple LOD's and/or multiple variations of the same model that can all use the one material.
  9. Because I like being efficient (#lazy) I was wondering if we could have a few shortcut keys for some of the menu items in the asset editor? Something like the standards perhaps - Save : Ctr+S Save As : Ctrl + Shift + S Toggle Wireframe : F2 Toggle Collider : F3
  10. I can't seem to change the name of the material for the model. I've tried pressing enter or saving the model straight away but it never saves the name. Actually I can't change the mesh name either...
  11. Updated to v1.2. Release notes in download.
  12. I'm from Australia. I will join at some point when I remember to set my alarm.
  13. Faster and shadows are just multiplied by the final frag color. Much faster. Also not using texelfetch anymore which smoothed the shadows a bit but still needs more work.
  14. I was trying something similar in the frag shader. I just didn't call RenderLighting if the fragment was in shadow but I thought the results were too dark. (the gif above) if(enable_lighting == true) { RenderLighting(material, materialInfo, vertexWorldPosition.xyz, n, v, NdotV, f_diffuse, f_specular, renderprobes, ibldiffuse, iblspecular); } Can I simply disable lighting like this to see the shadow or is this not the best approach?
  15. How to create a 3D texture in Ultra? I don't see a depth parameter in CreateTexture()... CreateTexture(TEXTURE_3D, width, height, depth???); Is it the layers parameter or is that for mipmaps?
  16. Got it down to 150 to 300ms by removing lots of sqrts().
  17. My thoughts exactly. A slow light would only need updating every second or so. It's only a 512x512 terrain. The slowest part is when the whole terrain is in light because then every ray cast dosnt hit somthing so is very long. I allready stop the ray when it leaves the AABB of the terrain. I also want to blend in the default shadow system when up close. That should look real good. Will have to match the shadow color. Are the shadows in Ultra just multiplied over the final frag color?
  18. Second go at this. Not as hard as it looks to get something basic going. I think the majority of the work will be performance improvements and making the shadows look nicer. It's "semi" real-time now. Still on the CPU but on another thread who's sole purpose is to calculate the shadow map until the program quits. Takes about 500 or so milliseconds to calculate the shadow map, hence the jitter as the sun get's higher. I think I can improve the ray casting speed but I want to focus on smoothing out those shadows. I'm wondering if signed distance fields can help... maybe by storing each pixels distance to the nearest shadow I can calculate the fragments distance and blend accordingly. Works in my head anyway. I think I'll sleep on it.
  19. SpiderPig

    HeightMap Shadows

    First attempt at raytracing a heightmap to get shadows across the entire voxel terrain. A bit pixelated but I think it looks right... All on the CPU and not real-time. A future job for a compute shader.
  20. The curse of the pine tree. This GLTF is recently exported from blender. Passing the files to the editor works good. But loading the model in editor and clicking "Convert Textures To DDS" fails on one of the textures. PineTree.zip I haven't yet figured out how to get blender to export DDS with the GLTF directly...
  21. I re-tested this with the original file and appears both Blender and Ultra are converting to GLTF properly now. This file must have been just a dud.
  22. SpiderPig

    water_wip.gif

    That might be enough to start with. I'm sure it will look good either way.
  23. SpiderPig

    water_wip.gif

    Looks great. It would be cool to see the wind parameters effected by some sort of mask texture, where you could make it less windy in coves and sheltered beaches.
  24. I've tried everything I can think of this last half hour but the client will no longer allow me to log in. It started with the same issue here (which I get randomly every month or so)
  25. Gon'a bump this up a bit. I got this again today. Client build 24. Should it have been fixed yet?
×
×
  • Create New...