Last active
January 26, 2024 16:09
-
-
Save ToJans/9e2d2f18a134c1f55ac98aa1c37a2759 to your computer and use it in GitHub Desktop.
testing if my json-patch-url works
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"op": "add", | |
"path": "/builders/textures/-", | |
"value": { | |
"id": "lshape", | |
"name":"lshape", | |
"imageUrl": "https://picsum.photos/512", | |
"repeat":{"x":1,"y":1}, | |
"rotation": 3.14159 | |
} | |
}, | |
{ | |
"op": "add", | |
"path": "/builders/materials/-", | |
"value": { | |
"id": "lshape", | |
"name": "lshape", | |
"map": { | |
"textureId": "lshape" | |
} | |
} | |
}, | |
{ | |
"op": "test", | |
"path": "/builders/elements/0/id", | |
"value": "table" | |
}, | |
{ | |
"op": "add", | |
"path": "/builders/elements/0/opts/overruleMaterials", | |
"value": { | |
"Cover book-02": "lshape" | |
} | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{"op":"replace","path":"/data/modelData/TERRACEROOFALU/size/panelDepth/default","value":100}, | |
{"op":"replace","path":"/data/modelData/TERRACEROOFALU/size/panelWidth/default","value":100} | |
] |
Author
ToJans
commented
Nov 14, 2023
•
- example using the overrule material gist file to replace the magazine texture on the table with a random image
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment