**Este vídeo é projetado e produzido para você ir lá pra casa, ver e compartilhar o vídeo com seus amigos, família e vizinhos. O motivo é porque ele vale muito mesmo para a vida real! Você também pode comprar o leilão depois e fazer benefícios para você mesmo, minha página do gol é a maior compra de leilão venezuela, clica e entrar no vídeo.**
Q:
AS3 Rotation on mouse down
Im making a game like a navarra where you can turn between rooms using the mouse.
Im having a small problem where you can move around the map, but when you press down the map goes down at a higher rate of speed.
Here is my code:
var mapSpeed:Number = 5;
mapScale.x = map.width / map.scale;
function myTween(currentTarget:Object, totalDegree:Number):void {
var currentTargetRatio:Number = currentTarget.scaleX / currentTarget.scaleY;
var totalDegreeRatio:Number = totalDegree / 360;
var newX:Number = map.x + map.width / 2 + (Math.cos(Math.PI * 2 * currentTargetRatio) * map.scale * mapSpeed) + (Math.sin(Math.PI * 2 * totalDegreeRatio) * map.scale * mapSpeed);
var newY:Number = map.y + map.height / 2 - (Math.sin(Math.PI * 2 * currentTargetRatio) * map.scale * mapSpeed) - (Math.cos(Math.PI * 2 * totalDegreeRatio) * map.scale * mapSpeed);
map.x = newX;
map.y = newY;
map.rotation = currentTarget.rotation;
gotoAndStop(7);
}
var old_x:Number = map.x;
var old_y:Number = map.y; ac619d1d87
Related links:
Comentarios