@@ -16,17 +16,25 @@ import PySide6.Qt3DCore
1616import PySide6 .Qt3DRender
1717
1818import enum
19- from typing import Any , Optional , Type , Union , Sequence , List , overload
19+ from typing import Any , ClassVar , List , Optional , Sequence , Type , Union , overload
20+ from PySide6 .QtCore import Signal
2021from shiboken6 import Shiboken
2122
2223
24+ NoneType = type (None )
25+
26+
2327class QIntList (object ): ...
2428
2529
2630class Qt3DAnimation (Shiboken .Object ):
2731
2832 class QAbstractAnimation (PySide6 .QtCore .QObject ):
2933
34+ animationNameChanged : ClassVar [Signal ] = ... # animationNameChanged(QString)
35+ durationChanged : ClassVar [Signal ] = ... # durationChanged(float)
36+ positionChanged : ClassVar [Signal ] = ... # positionChanged(float)
37+
3038 class AnimationType (enum .Enum ):
3139
3240 KeyframeAnimation : Qt3DAnimation .QAbstractAnimation .AnimationType = ... # 0x1
@@ -43,12 +51,20 @@ class Qt3DAnimation(Shiboken.Object):
4351 def setPosition (self , position : float ) -> None : ...
4452
4553 class QAbstractAnimationClip (PySide6 .Qt3DCore .Qt3DCore .QNode ):
54+
55+ durationChanged : ClassVar [Signal ] = ... # durationChanged(float)
4656 def duration (self ) -> float : ...
4757
4858 class QAbstractChannelMapping (PySide6 .Qt3DCore .Qt3DCore .QNode ): ...
4959
5060 class QAbstractClipAnimator (PySide6 .Qt3DCore .Qt3DCore .QComponent ):
5161
62+ channelMapperChanged : ClassVar [Signal ] = ... # channelMapperChanged(Qt3DAnimation::QChannelMapper*)
63+ clockChanged : ClassVar [Signal ] = ... # clockChanged(Qt3DAnimation::QClock*)
64+ loopCountChanged : ClassVar [Signal ] = ... # loopCountChanged(int)
65+ normalizedTimeChanged : ClassVar [Signal ] = ... # normalizedTimeChanged(float)
66+ runningChanged : ClassVar [Signal ] = ... # runningChanged(bool)
67+
5268 class Loops (enum .Enum ):
5369
5470 Infinite : Qt3DAnimation .QAbstractClipAnimator .Loops = ... # -0x1
@@ -76,6 +92,10 @@ class Qt3DAnimation(Shiboken.Object):
7692
7793 class QAdditiveClipBlend (PySide6 .Qt3DAnimation .Qt3DAnimation .QAbstractClipBlendNode ):
7894
95+ additiveClipChanged : ClassVar [Signal ] = ... # additiveClipChanged(Qt3DAnimation::QAbstractClipBlendNode*)
96+ additiveFactorChanged : ClassVar [Signal ] = ... # additiveFactorChanged(float)
97+ baseClipChanged : ClassVar [Signal ] = ... # baseClipChanged(Qt3DAnimation::QAbstractClipBlendNode*)
98+
7999 def __init__ (self , parent : Optional [PySide6 .Qt3DCore .Qt3DCore .QNode ] = ...) -> None : ...
80100
81101 def additiveClip (self ) -> PySide6 .Qt3DAnimation .Qt3DAnimation .QAbstractClipBlendNode : ...
@@ -104,6 +124,8 @@ class Qt3DAnimation(Shiboken.Object):
104124
105125 class QAnimationClip (PySide6 .Qt3DAnimation .Qt3DAnimation .QAbstractAnimationClip ):
106126
127+ clipDataChanged : ClassVar [Signal ] = ... # clipDataChanged(Qt3DAnimation::QAnimationClipData)
128+
107129 def __init__ (self , parent : Optional [PySide6 .Qt3DCore .Qt3DCore .QNode ] = ...) -> None : ...
108130
109131 def clipData (self ) -> PySide6 .Qt3DAnimation .Qt3DAnimation .QAnimationClipData : ...
@@ -133,6 +155,9 @@ class Qt3DAnimation(Shiboken.Object):
133155
134156 class QAnimationClipLoader (PySide6 .Qt3DAnimation .Qt3DAnimation .QAbstractAnimationClip ):
135157
158+ sourceChanged : ClassVar [Signal ] = ... # sourceChanged(QUrl)
159+ statusChanged : ClassVar [Signal ] = ... # statusChanged(Status)
160+
136161 class Status (enum .Enum ):
137162
138163 NotReady : Qt3DAnimation .QAnimationClipLoader .Status = ... # 0x0
@@ -151,6 +176,13 @@ class Qt3DAnimation(Shiboken.Object):
151176
152177 class QAnimationController (PySide6 .QtCore .QObject ):
153178
179+ activeAnimationGroupChanged : ClassVar [Signal ] = ... # activeAnimationGroupChanged(int)
180+ entityChanged : ClassVar [Signal ] = ... # entityChanged(Qt3DCore::QEntity*)
181+ positionChanged : ClassVar [Signal ] = ... # positionChanged(float)
182+ positionOffsetChanged : ClassVar [Signal ] = ... # positionOffsetChanged(float)
183+ positionScaleChanged : ClassVar [Signal ] = ... # positionScaleChanged(float)
184+ recursiveChanged : ClassVar [Signal ] = ... # recursiveChanged(bool)
185+
154186 def __init__ (self , parent : Optional [PySide6 .QtCore .QObject ] = ...) -> None : ...
155187
156188 def activeAnimationGroup (self ) -> int : ...
@@ -174,6 +206,10 @@ class Qt3DAnimation(Shiboken.Object):
174206
175207 class QAnimationGroup (PySide6 .QtCore .QObject ):
176208
209+ durationChanged : ClassVar [Signal ] = ... # durationChanged(float)
210+ nameChanged : ClassVar [Signal ] = ... # nameChanged(QString)
211+ positionChanged : ClassVar [Signal ] = ... # positionChanged(float)
212+
177213 def __init__ (self , parent : Optional [PySide6 .QtCore .QObject ] = ...) -> None : ...
178214
179215 def addAnimation (self , animation : PySide6 .Qt3DAnimation .Qt3DAnimation .QAbstractAnimation ) -> None : ...
@@ -188,6 +224,8 @@ class Qt3DAnimation(Shiboken.Object):
188224
189225 class QBlendedClipAnimator (PySide6 .Qt3DAnimation .Qt3DAnimation .QAbstractClipAnimator ):
190226
227+ blendTreeChanged : ClassVar [Signal ] = ... # blendTreeChanged(QAbstractClipBlendNode*)
228+
191229 def __init__ (self , parent : Optional [PySide6 .Qt3DCore .Qt3DCore .QNode ] = ...) -> None : ...
192230
193231 def blendTree (self ) -> PySide6 .Qt3DAnimation .Qt3DAnimation .QAbstractClipBlendNode : ...
@@ -251,6 +289,10 @@ class Qt3DAnimation(Shiboken.Object):
251289
252290 class QChannelMapping (PySide6 .Qt3DAnimation .Qt3DAnimation .QAbstractChannelMapping ):
253291
292+ channelNameChanged : ClassVar [Signal ] = ... # channelNameChanged(QString)
293+ propertyChanged : ClassVar [Signal ] = ... # propertyChanged(QString)
294+ targetChanged : ClassVar [Signal ] = ... # targetChanged(Qt3DCore::QNode*)
295+
254296 def __init__ (self , parent : Optional [PySide6 .Qt3DCore .Qt3DCore .QNode ] = ...) -> None : ...
255297
256298 def channelName (self ) -> str : ...
@@ -262,13 +304,17 @@ class Qt3DAnimation(Shiboken.Object):
262304
263305 class QClipAnimator (PySide6 .Qt3DAnimation .Qt3DAnimation .QAbstractClipAnimator ):
264306
307+ clipChanged : ClassVar [Signal ] = ... # clipChanged(Qt3DAnimation::QAbstractAnimationClip*)
308+
265309 def __init__ (self , parent : Optional [PySide6 .Qt3DCore .Qt3DCore .QNode ] = ...) -> None : ...
266310
267311 def clip (self ) -> PySide6 .Qt3DAnimation .Qt3DAnimation .QAbstractAnimationClip : ...
268312 def setClip (self , clip : PySide6 .Qt3DAnimation .Qt3DAnimation .QAbstractAnimationClip ) -> None : ...
269313
270314 class QClipBlendValue (PySide6 .Qt3DAnimation .Qt3DAnimation .QAbstractClipBlendNode ):
271315
316+ clipChanged : ClassVar [Signal ] = ... # clipChanged(Qt3DAnimation::QAbstractAnimationClip*)
317+
272318 @overload
273319 def __init__ (self , clip : PySide6 .Qt3DAnimation .Qt3DAnimation .QAbstractAnimationClip , parent : Optional [PySide6 .Qt3DCore .Qt3DCore .QNode ] = ...) -> None : ...
274320 @overload
@@ -279,6 +325,8 @@ class Qt3DAnimation(Shiboken.Object):
279325
280326 class QClock (PySide6 .Qt3DCore .Qt3DCore .QNode ):
281327
328+ playbackRateChanged : ClassVar [Signal ] = ... # playbackRateChanged(double)
329+
282330 def __init__ (self , parent : Optional [PySide6 .Qt3DCore .Qt3DCore .QNode ] = ...) -> None : ...
283331
284332 def playbackRate (self ) -> float : ...
@@ -311,6 +359,13 @@ class Qt3DAnimation(Shiboken.Object):
311359
312360 class QKeyframeAnimation (PySide6 .Qt3DAnimation .Qt3DAnimation .QAbstractAnimation ):
313361
362+ easingChanged : ClassVar [Signal ] = ... # easingChanged(QEasingCurve)
363+ endModeChanged : ClassVar [Signal ] = ... # endModeChanged(QKeyframeAnimation::RepeatMode)
364+ framePositionsChanged : ClassVar [Signal ] = ... # framePositionsChanged(QList<float>)
365+ startModeChanged : ClassVar [Signal ] = ... # startModeChanged(QKeyframeAnimation::RepeatMode)
366+ targetChanged : ClassVar [Signal ] = ... # targetChanged(Qt3DCore::QTransform*)
367+ targetNameChanged : ClassVar [Signal ] = ... # targetNameChanged(QString)
368+
314369 class RepeatMode (enum .Enum ):
315370
316371 None_ : Qt3DAnimation .QKeyframeAnimation .RepeatMode = ... # 0x0
@@ -339,6 +394,10 @@ class Qt3DAnimation(Shiboken.Object):
339394
340395 class QLerpClipBlend (PySide6 .Qt3DAnimation .Qt3DAnimation .QAbstractClipBlendNode ):
341396
397+ blendFactorChanged : ClassVar [Signal ] = ... # blendFactorChanged(float)
398+ endClipChanged : ClassVar [Signal ] = ... # endClipChanged(Qt3DAnimation::QAbstractClipBlendNode*)
399+ startClipChanged : ClassVar [Signal ] = ... # startClipChanged(Qt3DAnimation::QAbstractClipBlendNode*)
400+
342401 def __init__ (self , parent : Optional [PySide6 .Qt3DCore .Qt3DCore .QNode ] = ...) -> None : ...
343402
344403 def blendFactor (self ) -> float : ...
@@ -350,6 +409,8 @@ class Qt3DAnimation(Shiboken.Object):
350409
351410 class QMorphTarget (PySide6 .QtCore .QObject ):
352411
412+ attributeNamesChanged : ClassVar [Signal ] = ... # attributeNamesChanged(QStringList)
413+
353414 def __init__ (self , parent : Optional [PySide6 .QtCore .QObject ] = ...) -> None : ...
354415
355416 def addAttribute (self , attribute : PySide6 .Qt3DCore .Qt3DCore .QAttribute ) -> None : ...
@@ -362,6 +423,13 @@ class Qt3DAnimation(Shiboken.Object):
362423
363424 class QMorphingAnimation (PySide6 .Qt3DAnimation .Qt3DAnimation .QAbstractAnimation ):
364425
426+ easingChanged : ClassVar [Signal ] = ... # easingChanged(QEasingCurve)
427+ interpolatorChanged : ClassVar [Signal ] = ... # interpolatorChanged(float)
428+ methodChanged : ClassVar [Signal ] = ... # methodChanged(QMorphingAnimation::Method)
429+ targetChanged : ClassVar [Signal ] = ... # targetChanged(Qt3DRender::QGeometryRenderer*)
430+ targetNameChanged : ClassVar [Signal ] = ... # targetNameChanged(QString)
431+ targetPositionsChanged : ClassVar [Signal ] = ... # targetPositionsChanged(QList<float>)
432+
365433 class Method (enum .Enum ):
366434
367435 Normalized : Qt3DAnimation .QMorphingAnimation .Method = ... # 0x0
@@ -390,13 +458,20 @@ class Qt3DAnimation(Shiboken.Object):
390458
391459 class QSkeletonMapping (PySide6 .Qt3DAnimation .Qt3DAnimation .QAbstractChannelMapping ):
392460
461+ skeletonChanged : ClassVar [Signal ] = ... # skeletonChanged(Qt3DCore::QAbstractSkeleton*)
462+
393463 def __init__ (self , parent : Optional [PySide6 .Qt3DCore .Qt3DCore .QNode ] = ...) -> None : ...
394464
395465 def setSkeleton (self , skeleton : PySide6 .Qt3DCore .Qt3DCore .QAbstractSkeleton ) -> None : ...
396466 def skeleton (self ) -> PySide6 .Qt3DCore .Qt3DCore .QAbstractSkeleton : ...
397467
398468 class QVertexBlendAnimation (PySide6 .Qt3DAnimation .Qt3DAnimation .QAbstractAnimation ):
399469
470+ interpolatorChanged : ClassVar [Signal ] = ... # interpolatorChanged(float)
471+ targetChanged : ClassVar [Signal ] = ... # targetChanged(Qt3DRender::QGeometryRenderer*)
472+ targetNameChanged : ClassVar [Signal ] = ... # targetNameChanged(QString)
473+ targetPositionsChanged : ClassVar [Signal ] = ... # targetPositionsChanged(QList<float>)
474+
400475 def __init__ (self , parent : Optional [PySide6 .QtCore .QObject ] = ...) -> None : ...
401476
402477 def addMorphTarget (self , target : PySide6 .Qt3DAnimation .Qt3DAnimation .QMorphTarget ) -> None : ...
0 commit comments