Skip to content

Commit

Permalink
more part culling adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
Thutmose committed Sep 16, 2022
1 parent 12c1553 commit f817cf8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 35 deletions.
39 changes: 7 additions & 32 deletions src/main/java/thut/core/client/render/model/parts/Mesh.java
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public Mesh(final Integer[] order, final Vertex[] vert, final Vertex[] norm, fin
centre.mul(1.0f / order.length);

maxs.sub(mins);
extent = maxs.lengthSquared() * 50;
extent = maxs.lengthSquared() * 20;
extent = Math.max(20, extent);

// Initialize a "default" material for us
Expand Down Expand Up @@ -183,23 +183,12 @@ protected void doRender(final PoseStack mat, final VertexConsumer buffer, final

float x, y, z, nx, ny, nz, u, v;

com.mojang.math.Vector3f camera_view = com.mojang.math.Vector3f.ZP;

boolean cull = material.cull && alpha >= 1 && !material.transluscent;

if (cull)
{
dp.set(centre.x(), centre.y(), centre.z(), 1);
dp.transform(pos);
int s = 500;
double dr2 = Math.abs(dp.dot(METRIC));
if (dr2 < CULLTHRESHOLD || dr2 > s)
{
cull = false;
}
boolean size_cull = CULLTHRESHOLD < Double.MAX_VALUE && dr2 < s && dr2 > extent;
if (size_cull) return;
}
dp.set(centre.x(), centre.y(), centre.z(), 1);
dp.transform(pos);
int s = 500;
double dr2 = Math.abs(dp.dot(METRIC));
boolean size_cull = CULLTHRESHOLD < Double.MAX_VALUE && dr2 < s && dr2 > extent;
if (size_cull) return;

// Loop over this rather than the array directly, so that we can skip by
// more than 1 if culling.
Expand All @@ -218,20 +207,6 @@ protected void doRender(final PoseStack mat, final VertexConsumer buffer, final
dn.set(nx, ny, nz);
dn.transform(norms);

// flat vs smooth have slightly different cull criteria.
// Smooth must only cull on the first normal, otherwise we add a
// messed up thing to the render. I guess later we can check the
// other normals instead, but for now only checking first, and then
// a -0.2 for the threshold works.
final boolean tryCull = cull && (flat || i0 % iter == 0) && dn.dot(camera_view) < 0.0;

if (tryCull)
{
// Manually iterate a few to skip the entire face.
i0 += iter - 1;
continue;
}

// Next we can pull out the coordinates if not culled.
if (this.hasTextures) textureCoordinate = this.textureCoordinates[i];
vertex = this.vertices[i];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public RenderType makeRenderType(Material material, ResourceLocation tex, Mode m

final boolean transp = material.alpha < 1 || material.transluscent;
// disable culling entirely
if (!material.cull)
if (material.alpha >= 1)
{
builder.setCullState(RenderStateShard.NO_CULL);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"meta":{"format_version":"4.0","model_format":"free","box_uv":false},"name":"megaring","model_identifier":"","visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"timeline_setups":[],"resolution":{"width":16,"height":16},"elements":[{"name":"keystone","rescale":false,"locked":false,"from":[-1,-0.1,-1],"to":[2,1.9,2],"autouv":0,"color":1,"origin":[0,0,0],"faces":{"north":{"uv":[8,8,16,16],"rotation":90,"texture":0},"east":{"uv":[8,0,16,8],"texture":0},"south":{"uv":[8,8,16,16],"rotation":270,"texture":0},"west":{"uv":[0,0,8,8],"texture":0},"up":{"uv":[0,8,8,16],"rotation":270,"texture":0},"down":{"uv":[8,8,16,16],"rotation":270,"texture":0}},"type":"cube","uuid":"549f500a-f044-f9cf-6e0c-6680a36a7d26"},{"name":"band","rescale":false,"locked":false,"from":[0,0,-4],"to":[1,1,5],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[0.25,0.25,0.75,0.75],"texture":1},"east":{"uv":[1.25,0.25,1.75,0.75],"texture":1},"south":{"uv":[2.25,0.25,2.75,0.75],"texture":1},"west":{"uv":[3.25,0.25,3.75,0.75],"texture":1},"up":{"uv":[4.25,0.25,4.75,0.75],"texture":1},"down":{"uv":[5.25,0.25,5.75,0.75],"texture":1}},"type":"cube","uuid":"fa7da758-452f-04ef-fa96-35380d3a54eb"},{"name":"band","rescale":false,"locked":false,"from":[0,-10,-4],"to":[1,-9,5],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[12.25,0.25,12.75,0.75],"texture":1},"east":{"uv":[13.25,0.25,13.75,0.75],"texture":1},"south":{"uv":[14.25,0.25,14.75,0.75],"texture":1},"west":{"uv":[15.25,0.25,15.75,0.75],"texture":1},"up":{"uv":[0.25,1.25,0.75,1.75],"texture":1},"down":{"uv":[1.25,1.25,1.75,1.75],"texture":1}},"type":"cube","uuid":"ed148f4f-0346-7ec7-670f-80abd11f3ab6"},{"name":"band","rescale":false,"locked":false,"from":[0,-10,-5],"to":[1,1,-4],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[2.25,1.25,2.75,1.75],"texture":1},"east":{"uv":[3.25,1.25,3.75,1.75],"texture":1},"south":{"uv":[4.25,1.25,4.75,1.75],"texture":1},"west":{"uv":[5.25,1.25,5.75,1.75],"texture":1},"up":{"uv":[6.25,1.25,6.75,1.75],"texture":1},"down":{"uv":[7.25,1.25,7.75,1.75],"texture":1}},"type":"cube","uuid":"77baa295-4d99-d0df-a593-b3a16af39794"},{"name":"band","rescale":false,"locked":false,"from":[0,-10,5],"to":[1,1,6],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[6.25,0.25,6.75,0.75],"texture":1},"east":{"uv":[7.25,0.25,7.75,0.75],"texture":1},"south":{"uv":[8.25,0.25,8.75,0.75],"texture":1},"west":{"uv":[9.25,0.25,9.75,0.75],"texture":1},"up":{"uv":[10.25,0.25,10.75,0.75],"texture":1},"down":{"uv":[11.25,0.25,11.75,0.75],"texture":1}},"type":"cube","uuid":"8f2aecad-5c54-4ec4-dcf3-db17c70e277e"}],"outliner":[{"name":"band","origin":[0,0,0],"color":0,"uuid":"318ad477-9031-45c3-6a21-f5a88ad1adf0","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["ed148f4f-0346-7ec7-670f-80abd11f3ab6","fa7da758-452f-04ef-fa96-35380d3a54eb","77baa295-4d99-d0df-a593-b3a16af39794","8f2aecad-5c54-4ec4-dcf3-db17c70e277e",{"name":"keystone","origin":[0,0,0],"color":0,"uuid":"c56bcc27-c5f3-177d-6c84-0ceaffff1988","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["549f500a-f044-f9cf-6e0c-6680a36a7d26"]}]}],"textures":[{"path":"keystone.png","name":"keystone.png","folder":"block","namespace":"","id":"0","particle":false,"render_mode":"default","visible":true,"mode":"bitmap","saved":false,"uuid":"eef96557-766c-9f0c-674c-af386cf85d95","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABABAMAAABYR2ztAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAqUExURf9P59XZANlP50BAQD5P5z5p5z6X50+1/0+1rk+1jE+1VU+1J5e1ANW1AFClNbIAAAAJcEhZcwAADsAAAA7AAWrWiQkAAACrSURBVEjH7c6xEcIwDIVhr+AVwgY8EiDQkQ04T8BdFkjhAWjSp0qdzi1lStqswC5Ydhd0J85NGn+Fqv8kqTW9koMc5CAHWyqi3b7gyUFDbsCh4cmB8YDS3EvDUq1XPQBULUsOrLXA0XagyfgziEl6YMMFP9KDsJ3eTAp68gRONPtfcjCSAefBXxgZcuCCCbWbasdQc/TyCy4zQw6W6I3rwpKDj0AOtEAItP4C58yzuzr5EwIAAAAASUVORK5CYII="},{"path":"C:\\Users\\Patrick\\Documents\\Github\\Pokecube-Issues-and-Wiki\\src\\main\\resources\\assets\\pokecube\\textures\\worn\\band.png","name":"band.png","folder":"block","namespace":"","id":"1","particle":false,"render_mode":"default","visible":true,"mode":"bitmap","saved":true,"uuid":"b832b8be-a92e-4c52-2ced-74cea452713a","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAB5JREFUOE9j/P///38GCgDjqAEMo2HAMBoGDMMiDAAlHz/RG+BMbgAAAABJRU5ErkJggg=="}]}
{"meta":{"format_version":"4.0","model_format":"free","box_uv":false},"name":"megaring","model_identifier":"","visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"timeline_setups":[],"resolution":{"width":16,"height":16},"elements":[{"name":"keystone","rescale":false,"locked":false,"from":[-1,-0.1,-1],"to":[2,1.9,2],"autouv":0,"color":1,"origin":[0,0,0],"faces":{"north":{"uv":[8,8,16,16],"rotation":90,"texture":0},"east":{"uv":[8,0,16,8],"texture":0},"south":{"uv":[8,8,16,16],"rotation":270,"texture":0},"west":{"uv":[0,0,8,8],"texture":0},"up":{"uv":[0,8,8,16],"rotation":270,"texture":0},"down":{"uv":[8,8,16,16],"rotation":270,"texture":0}},"type":"cube","uuid":"549f500a-f044-f9cf-6e0c-6680a36a7d26"},{"name":"band","rescale":false,"locked":false,"from":[0,0,-4],"to":[1,1,5],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[0.25,0.25,0.75,0.75],"texture":1},"east":{"uv":[1.25,0.25,1.75,0.75],"texture":1},"south":{"uv":[2.25,0.25,2.75,0.75],"texture":1},"west":{"uv":[3.25,0.25,3.75,0.75],"texture":1},"up":{"uv":[4.25,0.25,4.75,0.75],"texture":1},"down":{"uv":[5.25,0.25,5.75,0.75],"texture":1}},"type":"cube","uuid":"fa7da758-452f-04ef-fa96-35380d3a54eb"},{"name":"band","rescale":false,"locked":false,"from":[0,-10,-4],"to":[1,-9,5],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[12.25,0.25,12.75,0.75],"texture":1},"east":{"uv":[13.25,0.25,13.75,0.75],"texture":1},"south":{"uv":[14.25,0.25,14.75,0.75],"texture":1},"west":{"uv":[15.25,0.25,15.75,0.75],"texture":1},"up":{"uv":[0.25,1.25,0.75,1.75],"texture":1},"down":{"uv":[1.25,1.25,1.75,1.75],"texture":1}},"type":"cube","uuid":"ed148f4f-0346-7ec7-670f-80abd11f3ab6"},{"name":"band","rescale":false,"locked":false,"from":[0,-10,-5],"to":[1,1,-4],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[2.25,1.25,2.75,1.75],"texture":1},"east":{"uv":[3.25,1.25,3.75,1.75],"texture":1},"south":{"uv":[4.25,1.25,4.75,1.75],"texture":1},"west":{"uv":[5.25,1.25,5.75,1.75],"texture":1},"up":{"uv":[6.25,1.25,6.75,1.75],"texture":1},"down":{"uv":[7.25,1.25,7.75,1.75],"texture":1}},"type":"cube","uuid":"77baa295-4d99-d0df-a593-b3a16af39794"},{"name":"band","rescale":false,"locked":false,"from":[0,-10,5],"to":[1,1,6],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[6.25,0.25,6.75,0.75],"texture":1},"east":{"uv":[7.25,0.25,7.75,0.75],"texture":1},"south":{"uv":[8.25,0.25,8.75,0.75],"texture":1},"west":{"uv":[9.25,0.25,9.75,0.75],"texture":1},"up":{"uv":[10.25,0.25,10.75,0.75],"texture":1},"down":{"uv":[11.25,0.25,11.75,0.75],"texture":1}},"type":"cube","uuid":"8f2aecad-5c54-4ec4-dcf3-db17c70e277e"}],"outliner":[{"name":"band","origin":[0,0,0],"color":0,"uuid":"318ad477-9031-45c3-6a21-f5a88ad1adf0","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["ed148f4f-0346-7ec7-670f-80abd11f3ab6","fa7da758-452f-04ef-fa96-35380d3a54eb","77baa295-4d99-d0df-a593-b3a16af39794","8f2aecad-5c54-4ec4-dcf3-db17c70e277e",{"name":"keystone","origin":[0,0,0],"color":0,"uuid":"c56bcc27-c5f3-177d-6c84-0ceaffff1988","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["549f500a-f044-f9cf-6e0c-6680a36a7d26"]}]}],"textures":[{"path":"keystone.png","name":"keystone.png","folder":"block","namespace":"","id":"0","particle":false,"render_mode":"default","visible":true,"mode":"bitmap","saved":false,"uuid":"eef96557-766c-9f0c-674c-af386cf85d95","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABABAMAAABYR2ztAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAqUExURf9P59XZANlP50BAQD5P5z5p5z6X50+1/0+1rk+1jE+1VU+1J5e1ANW1AFClNbIAAAAJcEhZcwAADsAAAA7AAWrWiQkAAACrSURBVEjH7c6xEcIwDIVhr+AVwgY8EiDQkQ04T8BdFkjhAWjSp0qdzi1lStqswC5Ydhd0J85NGn+Fqv8kqTW9koMc5CAHWyqi3b7gyUFDbsCh4cmB8YDS3EvDUq1XPQBULUsOrLXA0XagyfgziEl6YMMFP9KDsJ3eTAp68gRONPtfcjCSAefBXxgZcuCCCbWbasdQc/TyCy4zQw6W6I3rwpKDj0AOtEAItP4C58yzuzr5EwIAAAAASUVORK5CYII=","relative_path":"keystone.png"},{"path":"band.png","name":"band.png","folder":"block","namespace":"","id":"1","particle":false,"render_mode":"default","visible":true,"mode":"bitmap","saved":false,"uuid":"b832b8be-a92e-4c52-2ced-74cea452713a","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAB5JREFUOE9j/P///38GCgDjqAEMo2HAMBoGDMMiDAAlHz/RG+BMbgAAAABJRU5ErkJggg=="}]}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"meta":{"format_version":"4.0","model_format":"free","box_uv":false},"name":"ring","model_identifier":"","visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"timeline_setups":[],"resolution":{"width":16,"height":16},"elements":[{"name":"holder","rescale":false,"locked":false,"from":[-1,-0.1,-1],"to":[2,1.9,2],"autouv":0,"color":1,"origin":[0,0,0],"faces":{"north":{"uv":[14.25,0.25,14.75,0.75],"rotation":90,"texture":0},"east":{"uv":[15.25,0.25,15.75,0.75],"rotation":90,"texture":0},"south":{"uv":[13.25,0.25,13.75,0.75],"rotation":90,"texture":0},"west":{"uv":[12.25,0.25,11.75,0.75],"rotation":90,"texture":0},"up":{"uv":[6,1,0,0],"rotation":90,"texture":1},"down":{"uv":[10.25,0.25,10.75,0.75],"rotation":90,"texture":0}},"type":"cube","uuid":"549f500a-f044-f9cf-6e0c-6680a36a7d26"},{"name":"band","rescale":false,"locked":false,"from":[0,0,-4],"to":[1,1,5],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[0.25,0.25,0.75,0.75],"texture":0},"east":{"uv":[1.25,0.25,1.75,0.75],"texture":0},"south":{"uv":[2.25,0.25,2.75,0.75],"texture":0},"west":{"uv":[3.25,0.25,3.75,0.75],"texture":0},"up":{"uv":[4.25,0.25,4.75,0.75],"texture":0},"down":{"uv":[5.25,0.25,5.75,0.75],"texture":0}},"type":"cube","uuid":"fa7da758-452f-04ef-fa96-35380d3a54eb"},{"name":"band","rescale":false,"locked":false,"from":[0,-10,-4],"to":[1,-9,5],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[12.25,0.25,12.75,0.75],"texture":0},"east":{"uv":[13.25,0.25,13.75,0.75],"texture":0},"south":{"uv":[14.25,0.25,14.75,0.75],"texture":0},"west":{"uv":[15.25,0.25,15.75,0.75],"texture":0},"up":{"uv":[0.25,1.25,0.75,1.75],"texture":0},"down":{"uv":[1.25,1.25,1.75,1.75],"texture":0}},"type":"cube","uuid":"ed148f4f-0346-7ec7-670f-80abd11f3ab6"},{"name":"band","rescale":false,"locked":false,"from":[0,-10,-5],"to":[1,1,-4],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[2.25,1.25,2.75,1.75],"texture":0},"east":{"uv":[3.25,1.25,3.75,1.75],"texture":0},"south":{"uv":[4.25,1.25,4.75,1.75],"texture":0},"west":{"uv":[5.25,1.25,5.75,1.75],"texture":0},"up":{"uv":[6.25,1.25,6.75,1.75],"texture":0},"down":{"uv":[7.25,1.25,7.75,1.75],"texture":0}},"type":"cube","uuid":"77baa295-4d99-d0df-a593-b3a16af39794"},{"name":"band","rescale":false,"locked":false,"from":[0,-10,5],"to":[1,1,6],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[6.25,0.25,6.75,0.75],"texture":0},"east":{"uv":[7.25,0.25,7.75,0.75],"texture":0},"south":{"uv":[8.25,0.25,8.75,0.75],"texture":0},"west":{"uv":[9.25,0.25,9.75,0.75],"texture":0},"up":{"uv":[10.25,0.25,10.75,0.75],"texture":0},"down":{"uv":[11.25,0.25,11.75,0.75],"texture":0}},"type":"cube","uuid":"8f2aecad-5c54-4ec4-dcf3-db17c70e277e"},{"name":"gem","rescale":false,"locked":false,"from":[-1.1,-0.05,-1.1],"to":[2.1,1.9499999999999997,2.1],"autouv":0,"color":7,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[16,0,0,16],"rotation":90,"texture":1},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"a7fbc248-ffbe-4321-0d59-6a0067f197bc"}],"outliner":[{"name":"band","origin":[0,0,0],"color":0,"uuid":"900c36cc-58f5-aacb-4c92-83c9c7917450","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["ed148f4f-0346-7ec7-670f-80abd11f3ab6","fa7da758-452f-04ef-fa96-35380d3a54eb","77baa295-4d99-d0df-a593-b3a16af39794","8f2aecad-5c54-4ec4-dcf3-db17c70e277e","549f500a-f044-f9cf-6e0c-6680a36a7d26",{"name":"gem","origin":[0,0,0],"color":0,"uuid":"c8a515b4-56f8-11b3-cd4b-794e262cb6b9","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["a7fbc248-ffbe-4321-0d59-6a0067f197bc"]}]}],"textures":[{"path":"","name":"band","folder":"block","namespace":"","id":"1","particle":false,"render_mode":"default","visible":true,"mode":"bitmap","saved":false,"uuid":"b832b8be-a92e-4c52-2ced-74cea452713a","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAB5JREFUOE9j/P///38GCgDjqAEMo2HAMBoGDMMiDAAlHz/RG+BMbgAAAABJRU5ErkJggg=="},{"path":"","name":"gem","folder":"block","namespace":"","id":"2","particle":false,"render_mode":"default","visible":true,"mode":"bitmap","saved":false,"uuid":"fe880ad9-f9f6-0c62-e15e-ba516a34b6b2","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAB5JREFUOE9j/P///38GCgDjqAEMo2HAMBoGDMMiDAAlHz/RG+BMbgAAAABJRU5ErkJggg=="}]}
{"meta":{"format_version":"4.0","model_format":"free","box_uv":false},"name":"ring","model_identifier":"","visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"timeline_setups":[],"resolution":{"width":16,"height":16},"elements":[{"name":"holder","rescale":false,"locked":false,"from":[-1,-0.1,-1],"to":[2,1.9,2],"autouv":0,"color":1,"origin":[0,0,0],"faces":{"north":{"uv":[14.25,0.25,14.75,0.75],"rotation":90,"texture":0},"east":{"uv":[15.25,0.25,15.75,0.75],"rotation":90,"texture":0},"south":{"uv":[13.25,0.25,13.75,0.75],"rotation":90,"texture":0},"west":{"uv":[12.25,0.25,11.75,0.75],"rotation":90,"texture":0},"up":{"uv":[6,1,0,0],"rotation":90},"down":{"uv":[10.25,0.25,10.75,0.75],"rotation":90,"texture":0}},"type":"cube","uuid":"549f500a-f044-f9cf-6e0c-6680a36a7d26"},{"name":"band","rescale":false,"locked":false,"from":[0,0,-4],"to":[1,1,5],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[0.25,0.25,0.75,0.75],"texture":0},"east":{"uv":[1.25,0.25,1.75,0.75],"texture":0},"south":{"uv":[2.25,0.25,2.75,0.75],"texture":0},"west":{"uv":[3.25,0.25,3.75,0.75],"texture":0},"up":{"uv":[4.25,0.25,4.75,0.75],"texture":0},"down":{"uv":[5.25,0.25,5.75,0.75],"texture":0}},"type":"cube","uuid":"fa7da758-452f-04ef-fa96-35380d3a54eb"},{"name":"band","rescale":false,"locked":false,"from":[0,-10,-4],"to":[1,-9,5],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[12.25,0.25,12.75,0.75],"texture":0},"east":{"uv":[13.25,0.25,13.75,0.75],"texture":0},"south":{"uv":[14.25,0.25,14.75,0.75],"texture":0},"west":{"uv":[15.25,0.25,15.75,0.75],"texture":0},"up":{"uv":[0.25,1.25,0.75,1.75],"texture":0},"down":{"uv":[1.25,1.25,1.75,1.75],"texture":0}},"type":"cube","uuid":"ed148f4f-0346-7ec7-670f-80abd11f3ab6"},{"name":"band","rescale":false,"locked":false,"from":[0,-10,-5],"to":[1,1,-4],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[2.25,1.25,2.75,1.75],"texture":0},"east":{"uv":[3.25,1.25,3.75,1.75],"texture":0},"south":{"uv":[4.25,1.25,4.75,1.75],"texture":0},"west":{"uv":[5.25,1.25,5.75,1.75],"texture":0},"up":{"uv":[6.25,1.25,6.75,1.75],"texture":0},"down":{"uv":[7.25,1.25,7.75,1.75],"texture":0}},"type":"cube","uuid":"77baa295-4d99-d0df-a593-b3a16af39794"},{"name":"band","rescale":false,"locked":false,"from":[0,-10,5],"to":[1,1,6],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[6.25,0.25,6.75,0.75],"texture":0},"east":{"uv":[7.25,0.25,7.75,0.75],"texture":0},"south":{"uv":[8.25,0.25,8.75,0.75],"texture":0},"west":{"uv":[9.25,0.25,9.75,0.75],"texture":0},"up":{"uv":[10.25,0.25,10.75,0.75],"texture":0},"down":{"uv":[11.25,0.25,11.75,0.75],"texture":0}},"type":"cube","uuid":"8f2aecad-5c54-4ec4-dcf3-db17c70e277e"},{"name":"gem","rescale":false,"locked":false,"from":[-1.1,-0.05,-1.1],"to":[2.1,1.9499999999999997,2.1],"autouv":0,"color":7,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[0,0,16,16],"rotation":270},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"a7fbc248-ffbe-4321-0d59-6a0067f197bc"}],"outliner":[{"name":"band","origin":[0,0,0],"color":0,"uuid":"900c36cc-58f5-aacb-4c92-83c9c7917450","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["ed148f4f-0346-7ec7-670f-80abd11f3ab6","fa7da758-452f-04ef-fa96-35380d3a54eb","77baa295-4d99-d0df-a593-b3a16af39794","8f2aecad-5c54-4ec4-dcf3-db17c70e277e","549f500a-f044-f9cf-6e0c-6680a36a7d26",{"name":"gem","origin":[0,0,0],"color":0,"uuid":"c8a515b4-56f8-11b3-cd4b-794e262cb6b9","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["a7fbc248-ffbe-4321-0d59-6a0067f197bc"]}]}],"textures":[{"path":"","name":"band","folder":"block","namespace":"","id":"1","particle":false,"render_mode":"default","visible":true,"mode":"bitmap","saved":false,"uuid":"b832b8be-a92e-4c52-2ced-74cea452713a","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAB5JREFUOE9j/P///38GCgDjqAEMo2HAMBoGDMMiDAAlHz/RG+BMbgAAAABJRU5ErkJggg=="}]}

0 comments on commit f817cf8

Please sign in to comment.