You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current script system to create models from height maps in the Sandbox example has only scratched the surface of what can be done with the rendering technique. No need for textures or separate materials, just increase the density of vertices to match textures.
Potential features:
Sculpt geometry with automatically generated normals.
Generate materials based on calculated wear on corners and edges.
Automatic optimization of internal shadow model. Try to cover as much surface as possible with the least number of triangles, without getting too close to the surface. All details casting a shadow must be thicker than the depth bias of light sources.
Creating animations.
Increase detail level of voxel sets by diffusing the surface and comparing the intensity with a procedurally generated 3D material. This can generate a detailed brick wall from a single voxel with a material and random seed applied.
Save/load application specific format. Containing the whole workspace.
Export to a binary model format where the compression method is baked into the file to be executed by a vectorized virtual machine. The file will then contain a set of input streams and the assembler code for a machine interpreting the data. More tools can then be created without breaking version compatibility with the files. Fixed-point 16.16 values will be used for calculations, so that it has 100% determinism.
The text was updated successfully, but these errors were encountered:
Dawoodoz
added
enhancement
New feature or request
Big task
This can take months to complete and may generate sub tasks.
Tool
A separate script or application that makes a task easier
and removed
enhancement
New feature or request
labels
Jul 30, 2020
The PLY model importer is now a part of the automated Sandbox rendering tool. Moving the import function to the library would require supporting textures as well.
The 3D editor now has an archive system that can embed compressed images and any other files that might be needed. This will later allow sculpting shapes into compressed 8-bit heightmaps, to get the same level of compression as the scripts used to render floor tiles directly from heightmaps, but with the same ease of creation as scuplting in Blender.
The current script system to create models from height maps in the Sandbox example has only scratched the surface of what can be done with the rendering technique. No need for textures or separate materials, just increase the density of vertices to match textures.
Potential features:
The text was updated successfully, but these errors were encountered: