0

我遇到了一个小问题,因为我无法通过重写 setPos 方法来创建简单的 setPos 动画,如下所示:

def setPos(self, pos):                                                                                                                                                                                          
    print('from %s to %s' % (self.scenePos(), pos))                                                                                                                                                             
    timer = QTimeLine(5000)                                                                                                                                                                                     
    timer.setFrameRange(0, 100)                                                                                                                                                                                 
    animation = QGraphicsItemAnimation()                                                                                                                                                                        
    animation.setItem(self)                                                                                                                                                                                     
    animation.setTimeLine(timer)                                                                                                                                                                                
    x_step = (pos - self.scenePos()).x() / 200                                                                                                                                                                  
    y_step = (pos - self.scenePos()).y() / 200                                                                                                                                                                  
    for i in range(200):                                                                                                                                                                                        
        animation.setPosAt(i/200, self.scenePos() + QPointF(i * x_step, i * y_step))                                                                                                                            
    timer.start()    

提前致谢, b52

4

2 回答 2

1

@robe:QPropertyAnimation 要求声明类是 QObject ,我相信 QGraphicsItem 不是。

于 2011-10-13T16:03:59.903 回答
0

为什么不使用QPropertyAnimation?使用此类,您可以为对象的任何属性创建动画。

 QPropertyAnimation * animationPos = new QPropertyAnimation(Object, propertyName);

  animationPos->setDuration(miliseconds);
  animationPos->setStarValue(startValueForProperty);
  animationsPos->setEndValue(endValueForProperty);

你应该尝试,你会避免很多冲突。

于 2011-10-10T21:45:01.403 回答