mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2025-01-09 17:53:50 +00:00
TLR fix
This commit is contained in:
parent
e52dbdb2ff
commit
25388538cf
1 changed files with 2 additions and 2 deletions
|
@ -97,10 +97,10 @@ class ToontownLoadingScreen:
|
||||||
if gui:
|
if gui:
|
||||||
if base.localAvatarStyle:
|
if base.localAvatarStyle:
|
||||||
from toontown.toon import Toon
|
from toontown.toon import Toon
|
||||||
emote = random.choice(self.emotes)
|
emote = random.choice(self.emotes).values()
|
||||||
self.toon = Toon.Toon()
|
self.toon = Toon.Toon()
|
||||||
self.toon.setDNA(base.localAvatarStyle)
|
self.toon.setDNA(base.localAvatarStyle)
|
||||||
self.toon.loop(emote['emote'], fromFrame=emote['frame'], toFrame=emote['frame'])
|
self.toon.pose(*emote)
|
||||||
self.toon.getGeomNode().setDepthWrite(1)
|
self.toon.getGeomNode().setDepthWrite(1)
|
||||||
self.toon.getGeomNode().setDepthTest(1)
|
self.toon.getGeomNode().setDepthTest(1)
|
||||||
self.toon.setHpr(205, 0, 0)
|
self.toon.setHpr(205, 0, 0)
|
||||||
|
|
Loading…
Reference in a new issue