It looks like you're new here. If you want to get involved, click one of these buttons!
local line = Shape.new() line:setLineStyle(5, 0x000000, 1) line:beginPath() line:moveTo(100,100) line:lineTo(200, 200) line:endPath() stage:addChild(line) line.clear() line:setLineStyle(5, 0x000000, 1) line:beginPath() line:moveTo(100,100) line:lineTo(300, 250) line:endPath() stage:addChild(line) |
Comments
Likes: Teranth