This translation is community contributed and may not be up to date. We only maintain the English version of the documentation. Read this manual in English
파이 노드는 단순한 원부터 파이 모양, 사각 도넛 모양까지 원형 또는 타원형 오브젝트를 만드는 데 사용됩니다.
Outline의 Nodes 섹션을 Right click하고 Add ▸ Pie를 선택합니다. 새 파이 노드가 선택되며 해당 속성을 수정할 수 있습니다.

다음 속성은 파이 노드에만 있습니다:
Ellipse는 노드를 외부 반지름까지 확장합니다.Rectangle은 노드를 노드의 바운딩 박스까지 확장합니다.
노드에 텍스처를 설정하면 텍스처 이미지가 평평하게 적용되며, 텍스처의 모서리는 노드 바운딩 박스의 모서리와 대응됩니다.
파이 노드는 크기, 피벗, 색상 등을 설정하는 모든 일반 노드 조작 함수에 응답합니다. 파이 노드 전용 함수와 속성도 몇 가지 있습니다:
local pienode = gui.get_node("my_pie_node")
-- get the outer bounds
local fill_angle = gui.get_fill_angle(pienode)
-- increase perimeter vertices
local vertices = gui.get_perimeter_vertices(pienode)
gui.set_perimeter_vertices(pienode, vertices + 1)
-- change outer bounds
gui.set_outer_bounds(pienode, gui.PIEBOUNDS_RECTANGLE)
-- animate the inner radius
gui.animate(pienode, "inner_radius", 100, gui.EASING_INOUTSINE, 2, 0, nil, gui.PLAYBACK_LOOP_PINGPONG)
Did you spot an error or do you have a suggestion? Please let us know on GitHub!
GITHUB