• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

changes to multiblock??

Deccypher

New member
hey guys it was late so it could have been a mess up but i was playing around witht he multi blocks. jsut somethign simple makeing a 3 high 1 deep 1 wide block and a 3 high 1 deep and 3 wide block with the steel texture ( looking liek the steal top on all sides

here what i put

Code:
<block name="steelBlock3_1">
<property name="Extends" value="steelMaster"/>
<property name="CustomIcon" value="steelBlock"/>
<property name="SortOrder2" value="0050"/>
<property name="DisplayType" value="blockMulti"/>
<property name="MultiBlockDim" value="1,3,1"/>
<property name="Texture" value="355"/>
<!--  SortShape  -->
<property class="UpgradeBlock">
<property name="ToBlock" value="steelstainlessBlock3_1"/>
</property>
<property name="DowngradeBlock" value="rConcreteBlockBlock3_1"/>
</block>
and

Code:
<block name="steelBlock3_3">
<property name="Extends" value="steelMaster"/>
<property name="CustomIcon" value="steelBlock"/>
<property name="SortOrder2" value="0050"/>
<property name="DisplayType" value="blockMulti"/>
<property name="MultiBlockDim" value="1,3,3"/>
<!--  SortShape  -->
<property class="UpgradeBlock">
<property name="ToBlock" value="steelstainlessBlock3_3"/>
</property>
<property name="DowngradeBlock" value="rConcreteBlockBlock3_3"/>
</block>
but what i came back with was a placable block that took up the required area but only 1 side of 1 square was visable did they change how this works? or did i royally screw up

 
Yeh doesn't work like that I'm afraid; the multi dim is just to say how many voxel's they're going to use.

...you'll have to bring in a new mesh shape to do what you want.

- - - Updated - - -

You have tons of unity experience, so join us and we will get you up to speed on unity -> 7 days importable bundles.

https://discord.gg/2jRhpWG

 
that sucks when it did worl like that in 15 we did some crazy stuff it was great. hidden doors auto land levling ect

and I try to keep everything xmls only dont want my users havign to download somethign else to play but i will join your discord :)

 
Even xmls require some client downloads (icons, localization), so now that .unity3d files are natively supported in 7 days modding, the sky is the fracking limit.

 
Last edited by a moderator:
Back
Top