All pastes #2076805 Raw Edit

eventos mockup

public python v1 · immutable
#2076805 ·published 2011-06-08 16:16 UTC
rendered paste body
class Evento1(Evento):  def EnEvento(self, obj):    obj.Pintar()  def Tiempo(self, obj):    return (obj._start, obj._start+200)class Evento_Letra(Evento):  def EnEvento(self, l):    l.actual.scale_x = 1- l.progreso    obj.Pintar()  def Tiempo(self, obj):    return (obj._start, obj._start+100)class Fx(comun.Fx):   def __init__(self):     self.eventos_dialogos = [Evento1()]     self.eventos_silabas = [Evento1()]     self.eventos_letras = [EventoLetra()]