diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-02-21 01:25:34 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-02-21 01:25:34 +0000 |
commit | ed7c2a6a73f24f97a0f04c2e6be6862ffe54b585 (patch) | |
tree | 810350a653292d54621b7c4e72275bcd48dc6785 /res | |
parent | Add missing override (diff) | |
download | ilt-ed7c2a6a73f24f97a0f04c2e6be6862ffe54b585.tar.bz2 ilt-ed7c2a6a73f24f97a0f04c2e6be6862ffe54b585.tar.xz ilt-ed7c2a6a73f24f97a0f04c2e6be6862ffe54b585.zip |
Support for loading objects, uses and model factories from an XML resource
Diffstat (limited to 'res')
-rw-r--r-- | res/brush47.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/res/brush47.xml b/res/brush47.xml new file mode 100644 index 0000000..8f1d934 --- /dev/null +++ b/res/brush47.xml @@ -0,0 +1,15 @@ +<?xml version="1.0"?> +<ilt p.id="modelFactory"> + <object id="wheel"> + <use type="cylinder" position="0,0,0.571" scale="1.142,1.142,0.07" rotation="0,0,90"/> + </object> + <object id="axel"> + <use type="wheel" position="0.717,0,0"/> + <use type="wheel" position="-0.717,0,0" rotation="0,90,0"/> + </object> + <object id="bogey"> + <use type="axel" position="0,0,0"/> + <use type="axel" position="0,2,0"/> + <use type="axel" position="0,-2,0"/> + </object> +</ilt> |