Difference between revisions of "Test Page"

From MediaArts KB
Jump to: navigation, search
(Main Header)
Line 12: Line 12:
  
 
[http://www.google.com Link with text]
 
[http://www.google.com Link with text]
 +
 +
===Code Test===
 +
<syntaxhighlight lang="csharp">
 +
void Update () {
 +
 +
        //Move Pacman
 +
        this.transform.position += this.Direction * this.Speed * Time.deltaTime;
 +
}
 +
</syntaxhighlight>

Revision as of 04:04, 7 February 2017


Main Header

some text would go here.

All pages should have at lease one Category Tag on top

Sub header

http://www.google.com

Link with text

Code Test

void Update () {

        //Move Pacman
        this.transform.position += this.Direction * this.Speed * Time.deltaTime;
}