Skip to content

Commit

Permalink
commit 9/8
Browse files Browse the repository at this point in the history
  • Loading branch information
apw14002 committed Sep 8, 2016
1 parent a5a8213 commit 040812a
Show file tree
Hide file tree
Showing 97 changed files with 69,071 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
Binary file added HelloWorldProject_Wolf/.DS_Store
Binary file not shown.
Binary file added HelloWorldProject_Wolf/Assets/.DS_Store
Binary file not shown.
9 changes: 9 additions & 0 deletions HelloWorldProject_Wolf/Assets/Materials.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
8 changes: 8 additions & 0 deletions HelloWorldProject_Wolf/Assets/Materials/HelloWorld.mat.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions HelloWorldProject_Wolf/Assets/Scenes.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
8 changes: 8 additions & 0 deletions HelloWorldProject_Wolf/Assets/Scenes/HelloWorld.unity.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions HelloWorldProject_Wolf/Assets/Scripts.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

45 changes: 45 additions & 0 deletions HelloWorldProject_Wolf/Assets/Scripts/characterGen.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
using UnityEngine;
using System.Collections;
using UnityEngine.UI;

public class characterGen : MonoBehaviour {

//Variables
//float DecimalBox = .1f;
string myName = "Andrew";
//bool isDead = false'
string pNameWord = "YoYoYo";

public float playerHealth = 8f;
public Text text;
public Text pName;

// Use this for initialization
void Start () {
playerHealth = Random.Range (1.0f, 10.0f);
Debug.Log ("My Player Health: " + playerHealth);
playerHealth = playerHealth * 100.0f;
Debug.Log ("My Player Health with multiplier: " + playerHealth);

text = text.GetComponent<Text>();
text.text = myName;
pName.text = pNameWord;
}

// Update is called once per frame
void Update () {


/*if (myName != "Betty") {
Debug.Log ("You're name isn't Andrew!");
} else {
Debug.Log ("You're name is andrew! Way to go");
}*/


}

public void myButtonwasclicked() {
Debug.Log ("Button Clicked");
}
}
12 changes: 12 additions & 0 deletions HelloWorldProject_Wolf/Assets/Scripts/characterGen.cs.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions HelloWorldProject_Wolf/Assets/Textures.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
59 changes: 59 additions & 0 deletions HelloWorldProject_Wolf/Assets/Textures/HelloWorld.png.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
7 changes: 7 additions & 0 deletions HelloWorldProject_Wolf/HelloWorld_AndrewWolf/BuildNotes.rtf
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170
{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
{\colortbl;\red255\green255\blue255;}
\margl1440\margr1440\vieww10800\viewh8400\viewkind0
\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural

\f0\fs24 \cf0 Build Notes: No notes- followed in class demonstration for Submission Guidelines}
Loading

0 comments on commit 040812a

Please sign in to comment.