2
나는 최근 퍼즐 게임을하고 있습니다. 퍼즐 퍼즐 게임을하고 있습니다. 퍼즐 조각을 뒤섞어서 회전시켜야합니다. 다른 각도로 회전시키는 방법은 누구나 있습니다. 2-3 조각 회전하지 마세요. 같은 각도로? 감사합니다 :)KineticJs 다른 각도 회전
fillPatternImage:imageObj,
fillPatternOffsetX :i * pieceWidth,
fillPatternOffsetY :j * pieceHeight,
stroke: "#000000",
strokeWidth: 4,
lineCap: "round",
rotation : Math.PI * 28.5 * Math.floor(Math.random() * 2), <-- rotation part
draggable: true,
offset : [ pieceWidth/2 + pieceWidth * 0.3,pieceHeight/2 + pieceHeight * 0.3 ],
x:0+ (Math.random()*6)*((stage.getWidth()+pieceWidth)/16),
y:0+ (Math.random()*4)*((stage.getHeight()+pieceHeight)/16),
내 바이올린 : http://jsfiddle.net/e70n2693/34/
덕분에 많이 :) 그것은 작동한다. – user3709279