Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Procedural Content Generation for Unity Game Development

You're reading from   Procedural Content Generation for Unity Game Development Harness the power of procedural content generation to design unique games with Unity

Arrow left icon
Product type Paperback
Published in Jan 2016
Publisher
ISBN-13 9781785287473
Length 260 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Ryan Watkins Ryan Watkins
Author Profile Icon Ryan Watkins
Ryan Watkins
Arrow right icon
View More author details
Toc

Player


The Player class has to interact with the exit tile, which represents the entrance and exit of our dungeons. The player character also has to be transported to the Dungeon Board when the player moves to an exit tile. There are some subtleties to this, since we are not actually changing the scene. Code Snip 4.8 shows the updates the Player class requires:

14 public bool onWorldBoard;
15 public bool dungeonTransition;
…
19 protected override void Start () {
20  animator = GetComponent<Animator>();
21    
22  health = GameManager.instance.healthPoints;
23    
24  healthText.text = "Health: " + health;
25
26  position.x = position.y = 2;27
27
28  onWorldBoard = true;
29  dungeonTransition = false;
30
31  base.Start ();
32}
…
40 private void Update ()
…
63    if(horizontal != 0 || vertical != 0) {
64    if (!dungeonTransition) {
65    canMove = AttemptMove<Wall> (horizontal, vertical);
66    if(canMove && onWorldBoard) {
67    position.x += horizontal;
68    position...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime