itch.io is community of indie game creators and players

Devlogs

Bugfix: prevent player shooting + movement while dead, add self destruct option (F1) to unstick player

Lost in the Stars
A browser game made in HTML5

After a few comments on the silliness of being able to shoot whilst dead, I've decided to fix the issue by whacking the below on the shooting / movement code:

if (gameObject.layer.Equals(Constants.Layers.DeadThings))

{

  return;

}

Also added self destruct option (F1) to unstick player - there is no cost to this, you will be returned to the previous check point in the level.

Files

  • WebGL.zip 52 MB
    Jun 06, 2022
Leave a comment