multiple dynamicFillPlanes

Your forum for all discussions around Modding.
erwinsiuda
Posts: 9
Joined: Wed Nov 11, 2020 11:02 pm

multiple dynamicFillPlanes

Post by erwinsiuda »

Hi, In original placeable greenhouse in .xml file there is function called <storage/>

<storage node="storage" isExtension="false" fillLevelSyncThreshold="100" fillTypes="LIME SEEDS FERTILIZER WOODCHIPS SILAGE" >
<capacity fillType="LIME" capacity="2000" />
<capacity fillType="SEEDS" capacity="12000" />
<capacity fillType="FERTILIZER" capacity="4000" />
<capacity fillType="SILAGE" capacity="18000"/>
<capacity fillType="WOODCHIPS" capacity="14000" />
<dynamicFillPlane node="bunkerFillVolume1" allSidePlanes="true" maxAllowedHeapAngle="20" maxDelta="0.6" defaultFillType="SILAGE" >
</storage>

This one is already edited by me instead of STRAWBERRIES, TOMATO, LETTUCE, WATER I have LIME SEEDS FERTILIZER WOODCHIPS SILAGE and as I'm loading these into the loading point to make greenhouse work my dynamicFillPlane is being animated until storage is full like it is in BGA for example.

But I want to make dynamicFillPlane separate for each fillType
for example, I want woodchips to have separate dynamicFillPlane with woodchips texture and silage with separate dynamicFillPlane with silage texture.

Does anyone have any idea how to write right .XML function?