Skip to content
Snippets Groups Projects
Commit 8a2e1087 authored by Jordan's avatar Jordan
Browse files

Added default weapon

- Located in creation scene -> canvas -> choose character stats
	- Change that to change starting weapon
parent 85966e1a
No related branches found
No related tags found
No related merge requests found
No preview for this file type
......@@ -5,6 +5,7 @@ using System.Collections;
// This is used for character creation only
public class ChooseCharStats : MonoBehaviour {
public WeaponStats startingWeapon;
public Text vitText;
public Text strText;
public Text defText;
......@@ -40,6 +41,7 @@ public class ChooseCharStats : MonoBehaviour {
stats.setDefense (defense);
stats.setAgility (agility);
stats.setLuck (luck);
stats.setWeapon (startingWeapon);
}
private void updateScore(){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment