共用方式為


SpotLight.CoordinateSpace 屬性

定義

用來判斷光線方向和位移的視覺效果。 光線的位移和方向屬性相對於這個視覺效果的座標空間。 SpotLight.CoordinateSpace 是必要屬性。 如果未設定 SpotLight.CoordinateSpace ,SpotLight 將不會轉譯。

public:
 property Visual ^ CoordinateSpace { Visual ^ get(); void set(Visual ^ value); };
Visual CoordinateSpace();

void CoordinateSpace(Visual value);
public Visual CoordinateSpace { get; set; }
var visual = spotLight.coordinateSpace;
spotLight.coordinateSpace = visual;
Public Property CoordinateSpace As Visual

屬性值

光線位移相對於的視覺效果。

範例

_spotLight.CoordinateSpace = root;  

備註

SpotLight.Offset SpotLight.Direction 相對於 Spotlight.CoordiateSpace 。 每個視覺效果都有隱含的 3D 座標空間,以這種方式定義:

X 軸會從左邊緣到視覺效果的右邊緣執行。Y 軸會從視覺效果頂端到底部執行。Z 軸與視覺效果垂直。

X 方向從左至右。 Y 方向是從上到下。 Z 方向指向平面。 這個座標的原始點是視覺效果的左上角,而單位是 DIP。 此座標中定義了光線的位移和方向。

適用於

另請參閱