我最近在混乱中发现了constraints,但是,我找不到关于如何按比例限制演员大小的信息。例如,我希望一个演员保持另一个演员1/2的宽度,比如说它是家长。它似乎只能强制宽度与源缩放100%。

最佳答案

Clutter.BindConstraint匹配源参与者的位置和/或维度属性。对于分数定位,可以使用Clutter.AlignConstraint,但没有允许您设置分数维属性的Clutter.Constraint类。您可以通过子类化ClutterConstraint并重写Clutter.Constraint虚拟函数来实现自己的Clutter.Constraint.do_update_allocation(),该函数将传递应该由约束修改的参与者的分配。类似于此(未经测试)代码的内容应该可以工作:

class MyConstraint (Clutter.Constraint):
    def __init__(self, source, width_fraction=1.0, height_fraction=1.0):
        Clutter.Constraint.__init__(self)
        self._source = source
        self._widthf = width_fraction
        self._heightf = height_fraction
    def do_update_allocation(self, actor, allocation):
        source_alloc = self._source.get_allocation()
        width = source_alloc.get_width() * self._widthf
        height = source_alloc.get_height() * self._heightf
        allocation.x2 = allocation.x1 + width
        allocation.y2 = allocation.y1 + height

这应该说明Clutter.Constraint用来修改参与者分配的机制。

10-07 19:32