Ir para conteúdo
Fórum Script Brasil

Pesquisar na Comunidade

Mostrando resultados para as tags ''Car game''.

  • Pesquisar por Tags

    Digite tags separadas por vírgulas
  • Pesquisar por Autor

Tipo de Conteúdo


Fóruns

  • Programação & Desenvolvimento
    • ASP
    • PHP
    • .NET
    • Java
    • C, C++
    • Delphi, Kylix
    • Lógica de Programação
    • Mobile
    • Visual Basic
    • Outras Linguagens de Programação
  • WEB
    • HTML, XHTML, CSS
    • Ajax, JavaScript, XML, DOM
    • Editores
  • Arte & Design
    • Corel Draw
    • Fireworks
    • Flash & ActionScript
    • Photoshop
    • Outros Programas de Arte e Design
  • Sistemas Operacionais
    • Microsoft Windows
    • GNU/Linux
    • Outros Sistemas Operacionais
  • Softwares, Hardwares e Redes
    • Microsoft Office
    • Softwares Livres
    • Outros Softwares
    • Hardware
    • Redes
  • Banco de Dados
    • Access
    • MySQL
    • PostgreSQL
    • SQL Server
    • Demais Bancos
  • Segurança e Malwares
    • Segurança
    • Remoção De Malwares
  • Empregos
    • Vagas Efetivas
    • Vagas para Estágios
    • Oportunidades para Freelances
  • Negócios & Oportunidades
    • Classificados & Serviços
    • Eventos
  • Geral
    • Avaliações de Trabalhos
    • Links
    • Outros Assuntos
    • Entretenimento
  • Script Brasil
    • Novidades e Anúncios Script Brasil
    • Mercado Livre / Mercado Sócios
    • Sugestões e Críticas
    • Apresentações

Encontrar resultados em...

Encontrar resultados que...


Data de Criação

  • Início

    FIM


Data de Atualização

  • Início

    FIM


Filtrar pelo número de...

Data de Registro

  • Início

    FIM


Grupo


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Encontrado 1 registro

  1. Boas, podem-me colocar 2 carros nesse tutorial? Eu já consegui colocar as teclas porém fazendo a cópia das camadas não funciona, alguém me poderá ajudar? Esse código é com as teclas AWSD function step(who) { //check to see if the li in question is controlled by the player1 or by the computer1 if (_root["li"+who].code == "player1") { //we will constantly decrease speed by multiplying it with a number below 1 if (this["speed"+who]>0.3) { this["speed"+who] *= _root.speedDecay; } else { this["speed"+who] = 0; } //the li will react to certain keys //accelerate if (Key.isDown(87) && this["speed"+who]<_root.maxSpeed) { this["speed"+who] += _root.acceleration; } //brake (reverse) if (Key.isDown(83)) { this["speed"+who] -= _root.backSpeed; } //steer left if (Key.isDown(65) && this["speed"+who]>0.3) { _root["li"+who]._rotation -= _root.rotationStep*(this["speed"+who]/_root.maxSpeed); } //steer right if (Key.isDown(68) && this["speed"+who]>0.3) { _root["li"+who]._rotation += _root.rotationStep*(this["speed"+who]/_root.maxSpeed); } this["rotation"+who] = _root["li"+who]._rotation; //we calculate the two components of speed (X axis and Y axis) this["speedx"+who] = Math.sin(this["rotation"+who]*(Math.PI/180))*this["speed"+who]; this["speedy"+who] = Math.cos(this["rotation"+who]*(Math.PI/180))*this["speed"+who]*-1; //apply the components on the actual position of the li _root["li"+who]._x += this["speedx"+who]; _root["li"+who]._y += this["speedy"+who]; //position the shadow of the li _root["shadow"+who]._x = _root["li"+who]._x-4; _root["shadow"+who]._y = _root["li"+who]._y+2; _root["shadow"+who]._rotation = _root["li"+who]._rotation; } if (_root["li"+who].code == "computer1") { } } http://www.emanueleferonato.com/2007/05/15/create-a-flash-racing-game-tutorial/
×
×
  • Criar Novo...