In This installment of our 2D tutorial series, we will be adding enemy AI to our Lode Runner clone using A* Pathfinding. This post has been guest written by Adrian Seeto of Fun Mob Games who was also kind enough to write the AI scripts that are a huge part of bringing the game to life.
Adding the enemy AI required changes to many of the scripts that we added in the previous tutorials. You can download the complete project here or you can follow the steps below to update your existing project. I recommend following along with the tutorial as there’s tons of great information on implementing the AI with A*. You can also play the game as it will be at the end of this tutorial here.
Installing the A* Package
- Import the free version of Aron Granberg’s A* Pathfinding Project into Unity3d
- Create an empty GameObject and rename it A*. Make sure it’s positioned at 0,0,0
- Drag the /AstarPathfindingProject/Core/AstarPath.cs file onto the A* GameObject
- Click on the A* GameObject and disable the “Allow Javascript” option
Importing game C# scripts
Many of the scripts have been modified since Part 4 of this series, so you’ll need to update them. If you’ve made changes to your own scripts then you’ll need to merge your changes into these new scripts.
- Copy these scripts into your Assets/Scripts/ folder:
- Player.cs (updated)
- PlayerAnims.cs (updated)
- xa.cs (updated)
- ChangeBehaviorGUI.cs (new)
- Character.cs (new)
- Enemy.cs (new)
- Copy this script into your AstarPathfindingProject/Editor/GraphEditors folder:
- MyGridGeneratorEditor.cs
- And finally copy this script into your AstarPathfindingProject/Generators folder:
- MyGridGraph.cs
Configure The xa.cs Script
Create a new Layer by going to Edit –> Project Settings –> Tags and then enter “Enemy” in one of the empty User Layer slots.
- Select the Global/Scripts/xa GameObject
- Set Ground Mask field to “Ground”
- Set Ladder and Rope Mask field to “NoDraw”
- Set Enemy Mask field to “Enemy”
Miscellaneous Project Changes
Note that some of these may be unnecessary or redundant depending on how your project is currently setup.
- Expand the Global game object in the Hierarchy and then select the “border bottom” and “border top” GameObjects and set their layer to Ground. This is so enemies can stand on it if/when we dig a trap above the bottom border and our enemies fall into it they won’t fall continue through the border into the great abyss.
- Select the player object in the Hierarchy and then change its Tag to “Player”
- Select the OT/View object in the Hierarchy and uncheck “Always Pixel Perfect“. Note I’m not sure why Adrian turns off pixel perfect, feel free experiment on your own.
Configure A* Pathfinding For Our Level
A* is a graph traversal algorithm widely used in computer science, and commonly used in games for path finding. A full discussion of A* is beyond the scope of this tutorial, but there is some terminology you should be aware of. A graph consists of nodes and the network of connections between them. Once A* has been provided with a graph, you can query it to find the shortest path from one node to another. A* will return a path way list of all the nodes that you must travel along to get from your start node to your end node, in the shortest path possible.
More accurately, the path returned is the “least cost” path, because nodes have a specified penalty cost for traveling along it. A* will attempt to create a path which incurs the least cost. The unit of a penalty is up to the application developer. For example, in an isometric RTS game the terrain tiles would be nodes, with 8 connections per node (except for the boundary tiles). We could have the penalty cost units be related to the time it takes to travel on it. A swampy area might therefore have very high penalties on the nodes in it, while the grass land nodes surrounding the swamp have smaller penalties. A computer-controlled tank which wants to get from one side of the swamp to the other may then plot a course around the swamp if it costs less, even though it is physically further (i.e. more tiles must be travelled, but the total travel duration is less) . Of course, it is up to us as the game developer to implement all the code to actually slow the tank down if/when it travels over swamps, A* is only the pathfinder.
We don’t make use of penalties in this game because traveling along ropes, ladders, the ground, and falling is all done at the same speed. If gravity in our game was a useful non-lethal force (i.e. falling is faster than climbing and just as safe) then we can set node penalties so that A* would return a path where jumping off a platform would be a preferable shortcut to climbing down the ladder. If your game enforces lethal falls from great heights, then you would need additional logic.
A game could have multiple graphs, for use by the various units (ships have different travel behavior to an infantry man for example). For this tutorial, we only need to create one graph. In the graph one node will be created for every tile in a 2d grid-like layout. Each node may have up to 4 connections (up, down, left, right). Aron’s A* Project includes several different path graph generators, such as GridGraph, ListGraph, and NavMeshGraph. The GridGraph is a suitable starting point for our game.
The node connections generated by the base GridGraph are always bidirectional (if it creates a connection from from node1 to node2 then it will also create a connection from node2 to node1) which is not necessarily what we want. Bidirectional paths are fine for ladders, ropes, and the ground because you can go up and down a ladder, and both left-to-right and right-to-left on rope and ground. The problem arises when you want to include fall lanes. A fall lane is a term I’ve made up for a vertical one-way path that you can only travel on by falling. Fall lanes exist under the ropes (you can let go of a rope and fall) and off of cliff edges (you can run off a cliff and fall down to a lower platform). Once on a fall-lane you can’t travel in any direction but down until you’ve hit bottom. This is a uni-directional connection so the nodes on a fall lane only have one connection each: a connection to the node directly below it. Other nodes in the level will have between 2 and 4 connections each.
We could use the base GridGraph and not bother about having any fall lanes, it would just mean that our AI would not plan any paths that involve letting go of ropes or running off platforms. In this scenario you could still have your AI let go of ropes in a “reactionary” manner i.e. if it’s already on the rope and see a player below it, it could let go. You would do this will “special case” code in your enemy AI loop. However, its important to understand this is different from forward planning a route which takes into account the ability to jump off ropes. In order to that kind of path planning with A*, you need to provide that information in the graph, via the fall lane concept.
I’ve created a new generator class called “MyGridGraph” which inherits from GridGraph and overrides the Scan() and IsValidConnection() functions. Our new MyGridGraph class implements the fall lanes idea so let’s add it the scene.
- Select the A* GameObject
- Click the Graphs -> Add Graph button
- Add a new “My Grid Graph”
- Width: 26 (these dimensions match our level)
- Depth: 20
- Node Size: 1
- Aspect Ratio: 1
- Center: 0, 0.3, 0.01 (y is 0.3 so that our nodes are centered in the middle of each tile (which we already previously aligned at 0.3), the z is 0.01 because the integer coordinates used for Aron’s A* node positions have a fixed precision of 0.01 and anything smaller than that would cause troubles.)
- Rotation: -90, 0, 0 (rotate x because our grid is for a side-on view rather than the expected top-down view)
- Disable Cut Corners checkbox
- Connections: Six (we only need 4 connections per node up/down/left/right, but we don’t have that option)
- Disable Collision testing checkbox
- Disable Height testing checkbox
- Level Layers: Ground and NoDraw
- Scroll to the bottom and enable the Show Graphs checkbox then hit Scan
If it worked right you should now see the A* graph layout in your game/scene window (enable Gizmos) similar to the following image (click to see a larger version).
The red squares represent nodes that the AI can not travel on. All the bricks should have a red node centered on them. Much of the black “air” tiles should also have a red square gizmo. The tiles without the red gizmos are the nodes the AI can travel on. The blue line represents the connections between nodes. You should therefore see that the AI can travel along the surface of ground tiles, along ropes, and up and down ladders. You should also see the vertical fall lanes under ropes and over the edge of a platform. If you are very perceptive you will see that the blue lines come in 2 thicknesses. A thick line means that the connection is bidirectional (the line gizmo was rendered twice, once each way, making it thicker). A thin line represents a unidirectional connection.
Making Enemies
Our enemies and the player classes both derive from the Character class which implements the movement code. In this way we can ensure that the enemies and player move with the same constraints to help prevent giving either an unfair advantage, and just general time-saving and efficiency. The character class does have a movement speed variable, so we can give the enemies different movement speeds than the player, if desired.
Below we create 2 enemy game objects. I’ve just reused the player sprite for them, and I’ve given each one a different tint so I can tell them apart (helpful during the development stage). If you create your own different enemy sprite go ahead and use it.
- Create an empty GameObject called Enemies to use as an organizational holder.
- Clone the player GameObject in the hierarchy and rename it to enemy-1.
- Drag the enemy-1 to child it under your Enemies GameObject.
- Drag the /AstarPathfindingProject/Core/Seeker.cs script onto your enemy-1. The script’s defaults are fine. Go ahead and break enemy-1’s connection to the player prefab when prompted. The Seeker provides the enemy with the ability to use A* path finding. It has gizmos which paint green lines representing the found path.
- Expand the enemy-1 GameObject to see it’s children.
- Delete the “shoot parent” child.
- Add an empty GameObject child under enemy-1 named “path target”. Local Position 0,0,0 Local Scale 1,1,1. This will be a transform that the enemy script will move around to place on the desired target for our path finding AI. Useful during debugging to see what it is targeting.
- Duplicate “path target” and rename to “tile bounds”. Add a box collider to it, set to Trigger and centered at 0,0,1 and scale 1,1,1. This is so that when we trap an enemy we can walk smoothly on top of it’s head as if it was ground.
- Select the enemy-1 game object and set its Layer to Enemy and apply to children. Set its Tag to Enemy (leave children untagged).
- Expand the enemy-1 Player script component. Drag the /Scripts/Enemy.cs script onto the Player Script field to replace it with the Enemy script.
- The Enemy script has 3 slots that need to be filled: Player and Player Tr (drag the player gameobject to those slots), and Target (drag the path target gameobject to this slot).
- Expand the enemy-1 OTAnimatingSprite script. Set the Material Reference slot to “tint”. Set the Tint Color to red (or your preference) to visually differentiate it from the player.
- Clone enemy-1 as enemy-2 and give it a green tint. (You may have to redo the Red tint on the other enemy due to an OT quirk).
- Drag the enemies to suitable spawn points in the scene.
- Optional: Select the Enemies root GameObject. Drag the ChangeBehaviors.cs script onto it. Set the Enemies array size to 2, and drag enemy-1 and enemy-2 into the slots. This script will allow you to modify an enemy’s behavior on-the-fly via GUI between a “plain A* to Player” and a “Lode Runner-esque” behavior. The A* to Player behavior simply follows the shortest path toward the player’s exact position. The Lode Runner-esque behavior still uses A* but also tries to reimplement some of the reactionary quirks of the original game, especially with regards to ladder use. See the Enemy.cs file for details. You can disable/remove the ChangeBehaviors.cs script when you are done testing it out.
Conclusion
While the enemy AI is not a completely faithful recreation of the original, it is hoped that it will provide you with enough of an idea on how you can use and implement A* path finding in your own creations.
The AI scripts and this tutorial were contributed by Adrian Seeto of Fun Mob Games, creators of Pocket BMX game for iOS, a free-roaming 2D bike tricking game with physics. You can check them out at FunMobGames.com or on twitter @FunMobGames.
If you have any questions about the tutorial, please let us know in the comments below. Your support helps to keep these tutorial coming so be sure to follow us on Twitter and Facebook. This blog post is part of iDevBlogADay, a collection of indie developers writing about their development experiences.
More Tutorials In This Series
Make A 2D Game in Unity3D Using Only Free Tools Part 1
Make A 2D Game with Unity3D Using Only Free Tools Part 2
Make A 2D Game With Unity3D Using Only Free Tools Part 3
Make A 2D Game With Unity3D Using Only Free Tools Part 4


Hi everyone, this is just a quick update to tell you about our new circus themed web game called “Jet-Skate Jo-Jo” which you can 



