File indexing completed on 2025-01-19 03:59:52

0001 from .base import LottieEnum
0002 
0003 
0004 ## @ingroup Lottie
0005 class TestBased(LottieEnum):
0006     Characters = 1
0007     CharacterExcludingSpaces = 2
0008     Words = 3
0009     Lines = 4
0010 
0011     @classmethod
0012     def default(cls):
0013         return cls.Characters
0014 
0015 
0016 ## @ingroup Lottie
0017 class TextShape(LottieEnum):
0018     Square = 1
0019     RampUp = 2
0020     RampDown = 3
0021     Triangle = 4
0022     Round = 5
0023     Smooth = 6
0024 
0025     @classmethod
0026     def default(cls):
0027         return cls.Square
0028 
0029 
0030 ## @ingroup Lottie
0031 class TextGrouping(LottieEnum):
0032     Characters = 1
0033     Word = 2
0034     Line = 3
0035     All = 4
0036 
0037     @classmethod
0038     def default(cls):
0039         return cls.Characters