Kayıtlar

You can download my lesson plan from the link below. https://drive.google.com/open?id=1WlqEpQIuiTXstTmy9HpXRWIrz2kLtyfs

The Story of a Warrior Download

You can download the game from the link below. After the download process finished, you can open the zip. file and extract it's contents. To start the game, all you have to do is to click on the exe.file named "The Story of a Warrior". And hey, don't forget to have fun! :) https://drive.google.com/file/d/17dPosRTJ-RM2jiiwLOMfr1n9uzLBRanM/view?usp=sharing

The Scripts

  There I share the scripts that I've written while making this little game of mine. You can inspect, analyze or even use them. There is no copyright or anything like that ;) //GAME ENGINE SCRIPT using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; using UnityEngine.UI; public class GameEngine : MonoBehaviour {     public Text finalScoreText;     GameObject button1;     GameObject button2;     GameObject button3;     public int health;     public int morale;     public int stamina;     public int focus;     public int finalScore;         public Text healthText;     public Text moraleText;      public Text staminaText;     public Text focusText;     bool gameOverScreen = false;     public static bool familyMan = false;     public static bool coldAsIce = false;     public static bool vIP = false;     public static bool menOfThePeople = false;     public st