CompositionClip.AnchorPoint 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
要定位在剪辑偏移量处的剪辑上的点。 值根据剪辑的大小进行规范化。
public:
property float2 AnchorPoint { float2 get(); void set(float2 value); };
float2 AnchorPoint();
void AnchorPoint(float2 value);
public Vector2 AnchorPoint { get; set; }
var vector2 = compositionClip.anchorPoint;
compositionClip.anchorPoint = vector2;
Public Property AnchorPoint As Vector2
属性值
要定位在剪辑偏移量处的剪辑上的点。 值根据剪辑的大小进行规范化。 定位点值 (0, 0) 表示未转换剪辑的左上角, (1, 1) 表示右下角。 接受负值和大于 1 的值,但会导致 AnchorPoint 超出原始未转换剪辑的边界。
默认情况下,剪辑上的 AnchorPoint 值为 (0, 0) 。