Javascript.RU

Создать новую тему Ответ
 
Опции темы Искать в теме
  #1 (permalink)  
Старый 14.10.2018, 19:56
Новичок на форуме
Отправить личное сообщение для ArtC221 Посмотреть профиль Найти все сообщения от ArtC221
 
Регистрация: 14.10.2018
Сообщений: 1

полёт пули в игре html5+JS
Друзья всем привет! Мне нужна ваша помощь. У меня игра на HTML5 + JS на полотне canvas. На этом полотне есть объект, который стреляет пулями. Сама карта игры (canvas) достаточно большая, и пуля летит в направлении через всю карту. Как сделать, чтобы она пролетала, скажем, 100-200 пикселей и после этого исчезала?

Я точно не уверен, но думаю, что реализовать это можно здесь:

if( this.weapon.fireRateTick < this.weapon.fireRate ){
this.weapon.fireRateTick += $.dt;
} else {
if( $.autofire || ( !$.autofire && $.mouse.down ) ){
$.audio.play( 'shoot' );
if( $.powerupTimers[ 2 ] > 0 || $.powerupTimers[ 3 ] > 0 || $.powerupTimers[ 4 ] > 0) {
$.audio.play( 'shootAlt' );
}

this.weapon.fireRateTick = this.weapon.fireRateTick - this.weapon.fireRate;
this.weapon.fireFlag = 6;

if( this.weapon.count > 1 ) {
var spreadStart = -this.weapon.spread / 2;
var spreadStep = this.weapon.spread / ( this.weapon.count - 1 );
} else {
var spreadStart = 0;
var spreadStep = 0;
}

var gunX = this.x + Math.cos( this.direction ) * ( this.radius + this.weapon.bullet.size );
var gunY = this.y + Math.sin( this.direction ) * ( this.radius + this.weapon.bullet.size );

for( var i = 0; i < this.weapon.count; i++ ) {
$.bulletsFired++;
var color = this.weapon.bullet.strokeStyle;
if( $.powerupTimers[ 2 ] > 0 || $.powerupTimers[ 3 ] > 0 || $.powerupTimers[ 4 ] > 0) {
var colors = [];
if( $.powerupTimers[ 2 ] > 0 ) { colors.push( 'hsl(' + $.definitions.powerups[ 2 ].hue + ', ' + $.definitions.powerups[ 2 ].saturation + '%, ' + $.definitions.powerups[ 2 ].lightness + '%)' ); }
if( $.powerupTimers[ 3 ] > 0 ) { colors.push( 'hsl(' + $.definitions.powerups[ 3 ].hue + ', ' + $.definitions.powerups[ 3 ].saturation + '%, ' + $.definitions.powerups[ 3 ].lightness + '%)' ); }
if( $.powerupTimers[ 4 ] > 0 ) { colors.push( 'hsl(' + $.definitions.powerups[ 4 ].hue + ', ' + $.definitions.powerups[ 4 ].saturation + '%, ' + $.definitions.powerups[ 4 ].lightness + '%)' ); }
color = colors[ Math.floor( $.util.rand( 0, colors.length ) ) ];
}
$.bullets.push( new $.Bullet( {
x: gunX,
y: gunY,
speed: this.weapon.bullet.speed,
direction: this.direction + spreadStart + i * spreadStep,
damage: this.weapon.bullet.damage,
size: this.weapon.bullet.size,
lineWidth: this.weapon.bullet.lineWidth,
strokeStyle: color,
piercing: this.weapon.bullet.piercing

} ) );
}
}
}

В участке кода, что я выделил жирным - можно устанавливать значения размера пули, скорости, её урона. Вероятно в этом участке указывать длину пути? Но каким образом? Прошу вашей помощи.
Ответить с цитированием
Ответ



Опции темы Искать в теме
Искать в теме:

Расширенный поиск


Похожие темы
Тема Автор Раздел Ответов Последнее сообщение
Операционная Система на JS Icat Общие вопросы Javascript 3 17.04.2018 22:54
Вывыод контента через JS inet_boy Элементы интерфейса 0 18.11.2013 03:00
Не получается вставить код js в HTML garmoni Элементы интерфейса 3 05.09.2013 05:56
Вставка кода js с помощью js Alice Общие вопросы Javascript 1 12.06.2013 19:05
CSS JS HTML5 проблемка с позиционированием ir4compl (X)HTML/CSS 0 01.04.2012 14:26