|
2 | 2 | # Python definition for Live2D.Cubism.Framework.Json |
3 | 3 |
|
4 | 4 | from ..... import * |
| 5 | +from ..... import PhysicsDictionaryItem |
| 6 | +from ..... import SerializableCombinedParameterIds |
| 7 | +from ..... import SerializableCurve |
| 8 | +from ..... import SerializableEffectiveForces |
| 9 | +from ..... import SerializableExpression |
| 10 | +from ..... import SerializableExpressionParameter |
| 11 | +from ..... import SerializableFileReferences |
| 12 | +from ..... import SerializableGroup |
| 13 | +from ..... import SerializableHitArea |
| 14 | +from ..... import SerializableInput |
| 15 | +from ..... import SerializableMeta |
| 16 | +from ..... import SerializableMotions |
| 17 | +from ..... import SerializableNormalization |
| 18 | +from ..... import SerializableNormalizationValue |
| 19 | +from ..... import SerializableOutput |
| 20 | +from ..... import SerializableParameter |
| 21 | +from ..... import SerializableParameterGroups |
| 22 | +from ..... import SerializableParameters |
| 23 | +from ..... import SerializableParts |
| 24 | +from ..... import SerializablePhysicsSettings |
| 25 | +from ..... import SerializableUserData |
| 26 | +from ..... import SerializableVector2 |
| 27 | +from ..... import SerializableVertex |
5 | 28 |
|
6 | 29 | @typetree_defined |
7 | 30 | class CubismBuiltinPickers(MonoBehaviour): |
8 | 31 | pass |
9 | 32 | @typetree_defined |
| 33 | +class CubismDisplayInfo3Json(MonoBehaviour): |
| 34 | + Version : int |
| 35 | + Parameters : List[SerializableParameters] |
| 36 | + ParameterGroups : List[SerializableParameterGroups] |
| 37 | + Parts : List[SerializableParts] |
| 38 | + CombinedParameters : List[SerializableCombinedParameterIds] |
| 39 | +@typetree_defined |
10 | 40 | class CubismExp3Json(MonoBehaviour): |
11 | 41 | Type : str |
12 | 42 | FadeInTime : float |
13 | 43 | FadeOutTime : float |
14 | | - Parameters : List[object] # XXX: Fallback of SerializableExpressionParameter[] |
| 44 | + Parameters : List[SerializableExpressionParameter] |
15 | 45 | @typetree_defined |
16 | 46 | class CubismJsonParser(MonoBehaviour): |
17 | 47 | pass |
18 | 48 | @typetree_defined |
19 | 49 | class CubismModel3Json(MonoBehaviour): |
20 | 50 | Version : int |
21 | | - FileReferences : object # XXX: Fallback of SerializableFileReferences |
22 | | - Groups : List[object] # XXX: Fallback of SerializableGroup[] |
23 | | - HitAreas : List[object] # XXX: Fallback of SerializableHitArea[] |
| 51 | + FileReferences : SerializableFileReferences |
| 52 | + Groups : List[SerializableGroup] |
| 53 | + HitAreas : List[SerializableHitArea] |
24 | 54 | @typetree_defined |
25 | 55 | class CubismMotion3Json(MonoBehaviour): |
26 | 56 | Version : int |
27 | | - Meta : object # XXX: Fallback of SerializableMeta |
28 | | - Curves : List[object] # XXX: Fallback of SerializableCurve[] |
29 | | - UserData : List[object] # XXX: Fallback of SerializableUserData[] |
| 57 | + Meta : SerializableMeta |
| 58 | + Curves : List[SerializableCurve] |
| 59 | + UserData : List[SerializableUserData] |
30 | 60 | @typetree_defined |
31 | 61 | class CubismPhysics3Json(MonoBehaviour): |
32 | 62 | Version : int |
33 | | - Meta : object # XXX: Fallback of SerializableMeta |
34 | | - PhysicsSettings : List[object] # XXX: Fallback of SerializablePhysicsSettings[] |
| 63 | + Meta : SerializableMeta |
| 64 | + PhysicsSettings : List[SerializablePhysicsSettings] |
35 | 65 | @typetree_defined |
36 | 66 | class CubismPose3Json(MonoBehaviour): |
37 | 67 | Type : str |
38 | 68 | FadeInTime : float |
39 | 69 | @typetree_defined |
40 | 70 | class CubismUserData3Json(MonoBehaviour): |
41 | 71 | Version : int |
42 | | - Meta : object # XXX: Fallback of SerializableMeta |
43 | | - UserData : List[object] # XXX: Fallback of SerializableUserData[] |
| 72 | + Meta : SerializableMeta |
| 73 | + UserData : List[SerializableUserData] |
44 | 74 | @typetree_defined |
45 | 75 | class Value(MonoBehaviour): |
46 | 76 | pass |
0 commit comments