@abi-software/scaffoldvuer 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -1
- package/dist/scaffoldvuer-wc.common.js +266 -23
- package/dist/scaffoldvuer-wc.umd.js +266 -23
- package/dist/scaffoldvuer-wc.umd.min.js +266 -23
- package/dist/scaffoldvuer.common.js +904 -180
- package/dist/scaffoldvuer.common.js.map +1 -1
- package/dist/scaffoldvuer.css +1 -1
- package/dist/scaffoldvuer.umd.js +904 -180
- package/dist/scaffoldvuer.umd.js.map +1 -1
- package/dist/scaffoldvuer.umd.min.js +1 -1
- package/dist/scaffoldvuer.umd.min.js.map +1 -1
- package/package-lock.json +4 -4
- package/package.json +2 -2
- package/src/components/OpacityControls.vue +29 -128
- package/src/components/PrimitiveControls.vue +32 -17
- package/src/components/ScaffoldVuer.vue +9 -8
- package/src/components/TextureSlidesControls.vue +272 -0
- package/src/components/TreeControls.vue +8 -0
- package/src/scripts/RendererModule.js +2 -2
|
@@ -44,6 +44,9 @@
|
|
|
44
44
|
@change="setColour(data, $event)"
|
|
45
45
|
/>
|
|
46
46
|
<span>{{ node.label }}</span>
|
|
47
|
+
<span v-if="data.isTextureSlides" class="node-options">
|
|
48
|
+
(Texture)
|
|
49
|
+
</span>
|
|
47
50
|
</span>
|
|
48
51
|
</el-tree>
|
|
49
52
|
</div>
|
|
@@ -205,6 +208,7 @@ export default {
|
|
|
205
208
|
id: region.uuid + "/" + zincObject.uuid,
|
|
206
209
|
isPrimitives: true,
|
|
207
210
|
regionPath: zincObject.region.getFullPath(),
|
|
211
|
+
isTextureSlides: zincObject.isTextureSlides ? true : false,
|
|
208
212
|
};
|
|
209
213
|
this.addTreeItem(regionData.children, child);
|
|
210
214
|
}
|
|
@@ -682,6 +686,10 @@ export default {
|
|
|
682
686
|
}
|
|
683
687
|
}
|
|
684
688
|
|
|
689
|
+
.node-options {
|
|
690
|
+
text-align: right;
|
|
691
|
+
}
|
|
692
|
+
|
|
685
693
|
.drawer-button.open i {
|
|
686
694
|
transform: rotate(0deg) scaleY(2.5);
|
|
687
695
|
}
|
|
@@ -144,9 +144,9 @@ RendererModule.prototype.objectsToZincObjects = function(objects) {
|
|
|
144
144
|
let glyphset = zincObject;
|
|
145
145
|
if (zincObject.isGlyph)
|
|
146
146
|
glyphset = zincObject.getGlyphset();
|
|
147
|
-
zincObjects.
|
|
147
|
+
zincObjects.push(glyphset);
|
|
148
148
|
} else {
|
|
149
|
-
zincObjects.
|
|
149
|
+
zincObjects.push(zincObject);
|
|
150
150
|
}
|
|
151
151
|
}
|
|
152
152
|
}
|