MoveLayer topLeftX topLeftY |
현재 Active된 Layer를 재배치합니다. Background Layer는 움직일 수 없습니다.
Argument | Type | Description |
---|---|---|
topLeftX | Int16 | 움직일 곳의 좌측상단 X 좌표 |
topLeftY | Int16 | 움직일 곳의 좌측상단 Y 좌표 |
# Clear the active layer Clear # Create layer 1 at (100, 100) CreateLayer 100 100 200 200 1 # Change the active layer to layer 1 Layer 1 # Fill a rectangle that covers the entire layer FillRectangle 0 0 200 200 # Move the entire layer to (300, 150) MoveLayer 300 150