Game
Battle Buggy Glitch



8 years ago

Levels Complete - Time For Some Fine-Tuning


All levels/stages complete (including boss levels).

I’m happy.

Now for some “fine-tuning”.

I’m creating variety in enemies, fixing bugs, adding in a couple of gameplay features (nothing to fancy really) and eventually work on the menus.

That’s all that’s left.

It’s hard to make games. I thought this game was going to be small. But it just isn’t.

Anyway. I have learned a lot.

Oh… I fixed the “SPAWN IN YO FACE” bug / issue.

Incase you want to know what I did, here’s the code I put in the enemy create event.

		
			randomize();
tries = 0;
    x = irandom(room_width);
    y = irandom(room_height);
while(collision_circle(x,y,36,obj_solid,false,true) or collision_circle(x,y,36,obj_player_one,false,true)){
    x = irandom(room_width);
    y = irandom(room_height);

    tries +=1;
    if(tries > 100){
        instance_destroy();
    }
}
instance_create(x,y,obj_enemy);
		
	


2 comments

Loading...

Next up

Devlog 2023.11 - Upgrading To Godot 4

Devlog 2023.6 - Enemies Part 1 and Weapon Mechanics

Devlog 2023.10 - Code Refactoring For Regular Stages / Boss Stages

Devlog 2023.9 - Level Design Changes / Alt Weapons / Status Effects / Boss Battle Prep

What could this possibly be?

Devlog 2023.7 - Enemies Part 2-ish and Level Re-design

Devlog 2023.5 - Stage Map / Minimap

Devlog 2023.8 - Stage Room "Enhancements" + Pickups Intro

Devlog 2023.12 - Downgrading To Godot 3.5 (and other important updates)(Video)

Forbidden Dark Devlog 2024.1