mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
10 lines
No EOL
296 B
Python
10 lines
No EOL
296 B
Python
from toontown.battle import BattleParticles
|
|
|
|
def createSnow(geom):
|
|
snow = BattleParticles.loadParticleFile('snowdisk.ptf')
|
|
snow.setPos(0, 0, 5)
|
|
snowRender = geom.attachNewNode('snowRender')
|
|
snowRender.setDepthWrite(0)
|
|
snowRender.setBin('fixed', 1)
|
|
|
|
return snow, snowRender |