Jump to content

Face keeps disappearing when sailing


Not_Wilson

Recommended Posts

Ok now that I'm in the correct forum...

Sorry about that. So I'm modding in Shipwrecked and after an update was pushed to Hamlet, all Shipwrecked mods will have an issue where if they sail on a boat with like, a thatch or cloth sail, the face disappears. But it's only from the side.

See, from the front it's okay.

0bd4251e3585ccc5ff3f2e1e6192353e.png

From the side, it's not.

7cf7c2a3d60102155ce5b67e0ba918af.png

So I checked my build, maybe something compiled wrong.

Turns out now the same faces from DST are now in Shipwrecked...? I recompiled after adding face-33.png and set the proper pivot points.

That did nothing, sadly. 

It doesn't happen to Wilson, though.

0079afb0acc0b662de71398b8a5d830f.png

I pulled Wilson's build and didn't see anything that looked out of the ordinary. The console isn't throwing errors and neither are the logs. Anyone know what's up?

 

Edit: I've also tried decompiling the build with sailing animations in both Shipwrecked and Hamlet and the faces showed up then. Granted I think my decompiler might be out of date...

Link to comment
Share on other sites

Ok so thank you to @Neutral_Steve for finding the solution!

I had to open the .scml file in Notepad++ (or whatever text editor you choose) and add this line to the folder id part called "face":

<file id="33" name="face/face-33.png" width="200" height="200" pivot_x="0.622747" pivot_y="0.570002"/>

Change pivot_x and pivot_y as you need to with your character's face.

Basically the face bit should look like this

    <folder id="0" name="face">
        <file id="0" name="face/face-0.png" width="200" height="200" pivot_x="0.542747" pivot_y="0.570502"/>
        <file id="1" name="face/face-1.png" width="200" height="200" pivot_x="0.542747" pivot_y="0.570502"/>
        <file id="2" name="face/face-2.png" width="200" height="200" pivot_x="0.542747" pivot_y="0.570502"/>
        <file id="3" name="face/face-3.png" width="200" height="200" pivot_x="0.542747" pivot_y="0.570502"/>
        <file id="4" name="face/face-4.png" width="200" height="200" pivot_x="0.622747" pivot_y="0.570002"/>
        <file id="5" name="face/face-5.png" width="200" height="200" pivot_x="0.622747" pivot_y="0.570002"/>
        <file id="6" name="face/face-6.png" width="200" height="200" pivot_x="0.622747" pivot_y="0.570002"/>
        <file id="7" name="face/face-7.png" width="200" height="200" pivot_x="0.622747" pivot_y="0.570002"/>
        <file id="8" name="face/face-8.png" width="200" height="200" pivot_x="0.542747" pivot_y="0.570502"/>
        <file id="9" name="face/face-9.png" width="200" height="200" pivot_x="0.542747" pivot_y="0.570502"/>
        <file id="10" name="face/face-10.png" width="200" height="200" pivot_x="0.542747" pivot_y="0.570502"/>
        <file id="11" name="face/face-11.png" width="200" height="200" pivot_x="0.542747" pivot_y="0.570502"/>
        <file id="12" name="face/face-12.png" width="200" height="200" pivot_x="0.542747" pivot_y="0.570502"/>
        <file id="13" name="face/face-13.png" width="200" height="200" pivot_x="0.542747" pivot_y="0.570502"/>
        <file id="14" name="face/face-14.png" width="200" height="200" pivot_x="0.542747" pivot_y="0.570502"/>
        <file id="15" name="face/face-15.png" width="200" height="200" pivot_x="0.622747" pivot_y="0.570002"/>
        <file id="16" name="face/face-29.png" width="200" height="200" pivot_x="0" pivot_y="1"/>
        <file id="17" name="face/face-23.png" width="200" height="200" pivot_x="0" pivot_y="1"/>
        <file id="18" name="face/face-22.png" width="200" height="200" pivot_x="0" pivot_y="1"/>
        <file id="19" name="face/face-21.png" width="200" height="200" pivot_x="0" pivot_y="1"/>
        <file id="20" name="face/face-20.png" width="200" height="200" pivot_x="0" pivot_y="1"/>
        <file id="21" name="face/face-19.png" width="200" height="200" pivot_x="0" pivot_y="1"/>
        <file id="22" name="face/face-24.png" width="200" height="200" pivot_x="0" pivot_y="1"/>
        <file id="23" name="face/face-25.png" width="200" height="200" pivot_x="0" pivot_y="1"/>
        <file id="24" name="face/face-26.png" width="200" height="200" pivot_x="0" pivot_y="1"/>
        <file id="25" name="face/face-27.png" width="200" height="200" pivot_x="0" pivot_y="1"/>
        <file id="26" name="face/face-28.png" width="200" height="200" pivot_x="0" pivot_y="1"/>
        <file id="27" name="face/face-30.png" width="200" height="200" pivot_x="0.622747" pivot_y="0.570002"/>
        <file id="28" name="face/face-31.png" width="200" height="200" pivot_x="0" pivot_y="1"/>
        <file id="29" name="face/face-32.png" width="200" height="200" pivot_x="0" pivot_y="1"/>
        <file id="30" name="face/face-33.png" width="200" height="200" pivot_x="0.622747" pivot_y="0.570002"/>
		<file id="33" name="face/face-33.png" width="200" height="200" pivot_x="0.622747" pivot_y="0.570002"/> <!-- The part we needed! -->
    </folder>

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

Please be aware that the content of this thread may be outdated and no longer applicable.

×
  • Create New...