Poodletooth-iLand/toontown/effects/FlashEffect.py

30 lines
1.3 KiB
Python
Raw Normal View History

2015-03-03 22:10:12 +00:00
from pandac.PandaModules import *
from direct.interval.IntervalGlobal import *
from EffectController import EffectController
class FlashEffect(NodePath, EffectController):
def __init__(self):
NodePath.__init__(self, 'FlashEffect')
EffectController.__init__(self)
self.fadeTime = 0.15
self.effectColor = Vec4(1, 1, 1, 1)
model = loader.loadModel('phase_4/models/props/tt_m_efx_ext_particleCards')
self.effectModel = model.find('**/tt_t_efx_ext_particleWhiteGlow')
self.effectModel.setBillboardAxis(0)
self.effectModel.reparentTo(self)
self.effectModel.setColorScale(0, 0, 0, 0)
self.setAttrib(ColorBlendAttrib.make(ColorBlendAttrib.MAdd, ColorBlendAttrib.OIncomingAlpha, ColorBlendAttrib.OOne))
self.setBillboardPointWorld()
self.setDepthWrite(0)
self.setLightOff()
self.setFogOff()
def createTrack(self):
fadeBlast = self.effectModel.colorScaleInterval(self.fadeTime, Vec4(0, 0, 0, 0), startColorScale=Vec4(self.effectColor), blendType='easeOut')
scaleBlast = self.effectModel.scaleInterval(self.fadeTime, 5, startScale=1.0, blendType='easeIn')
self.track = Sequence(Parallel(fadeBlast, scaleBlast), Func(self.cleanUpEffect))
def setEffectColor(self, color):
self.effectColor = color