Помогите с ошибкой 2D rpg X2
|
|
Sorrow | Дата: Вторник, 14 Февраля 2017, 20:46 | Сообщение # 1 |
был не раз
Сейчас нет на сайте
| Помогите с 2d rpg (снова) Вот ошибка: ________________________________ ############################################################################################ FATAL ERROR in action number 1 of Step Event0 for object obj_player:
Push :: Execution Error - Variable Get -1.attack_key(100005, -2147483648) at gml_Script_scr_move_state (line 1) - if (attack_key) { ############################################################################################
Вот код в скрипте scr_move_state: if (attack_key) { image_index = 0; state = scr_attack_state; }
if (right_key) { phy_position_x += spd; sprite_index = spr_player_right; image_speed = .2; }
if (up_key) { phy_position_y -= spd; sprite_index = spr_player_up; image_speed = .2; }
if (left_key) { phy_position_x -= spd; sprite_index = spr_player_left; image_speed = .2; }
if (down_key) { phy_position_y += spd; sprite_index = spr_player_down; image_speed = .2; }
if (!down_key and !up_key and !left_key and !right_key) { image_speed = 0; image_index = 0; }
|
|
| |
Rean | Дата: Вторник, 14 Февраля 2017, 22:17 | Сообщение # 2 |
участник
Сейчас нет на сайте
| Sorrow, не декларирована переменная "attack_key".
P.S. В тексте ошибки пишется причина ошибки. P.P.S Ни ответа, ни привет - с прошлой ошибкой-то что? Решилась?
|
|
| |