Space Mods - GML - Enemy Factions (1/3) - GameMaker Studio 2

preview_player
Показать описание
FriendlyCosmonaut walks you through expanding your Space Rocks game with different advanced topics including Cameras, Power-ups and Effects using GameMaker Studio 2.


For more information and tutorials on GameMaker Studio 2 be sure to subscribe, follow @YoYoGames on Twitter and YoYo Games on Facebook.


YoYo Games is based in Dundee, Scotland.

Follow @YoYoGames on Twitter and YoYo Games on Facebook.
Рекомендации по теме
Комментарии
Автор

Ahhh, FriendlyCosmonaut, you're back... where have you been for the past year? Missed your tutorials....

scotsparaman
Автор

Fresh GM2 tutorial with beautiful voice and "for dummies" style. I absolutely love it. Her. It. Both really.

krevetka
Автор

WOW! This is VERY new. And helpful. Keep it up FriendlyCosmonaut!

AndreaToska
Автор

I've actually decided to make three different enemy types rather than the ones in the video:
Enemy_Stalker: Follows the player from behind and shoots, but runs away if you turn towards it.
Enemy_Buster: Moves very slowly, but has much larger bullets. These can break through the "Armor" powerup I've been working on in one shot.
Enemy_Aster: A large Ship that functions like an asteroid, where the largest moves randomly, but doesn't shoot until you shoot it once, where two smaller ships go out, but still do not shoot, and rather run away from you. If left alone, they can become Stalkers or Busters. If you shoot these down, two escape pods spawn which reward the player with 300 points each. (Note: Points to win in my game is 10k)

Typi
Автор

Make a tutorial about save state, load state, pause menu T_T.

rudolof
Автор

Hi, i neeed help with a simple thing, but i cant solve it:

if(room == room_game){
if(score >= 1000){
lives += 1;
}

if(lives <= 0){

audio_stop_all();
}
room_goto(room_gameover);
audio_play_sound(snd_lose, 1, false);
}

if(lives =+ 1){
score -= 1000;
}
}

OK, so, i want to every time that I score 1000 points the game add 1 life and remove those 1000 points,
but it isnt removing...

If someone help me I will be very happy and sorry for my bad english

luni