Void Animates
Just a guy who loves... EVERYTHING!
Hey!! So, I'm aiming to create a Paper-Mario styled effect using LUA, similar to the gif below, but I've tried using the render flag RF_PAPERSPRITE, but the character disappears when reverting to facing forward. I want it so that the character will only face left and right, and not revert to facing forward when the controls aren't held. Could someone help?? Thanks!!
Here's the lua so far;
(refer to gifs below)
Here's the lua so far;
the lua lol:
addHook("ThinkFrame", function()
for player in players.iterate do
if player.mo and player.mo.valid and player.mo.skin == "sketchog" then
player.mo.renderflags = $ | RF_PAPERSPRITE
end
end
end)
(refer to gifs below)