共用方式為


PointLight.CoordinateSpace 屬性

定義

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

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

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

屬性值

用來判斷光線位移的視覺效果。

範例

_pointLight.CoordinateSpace = root;  

備註

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

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

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

適用於

另請參閱