Play: Modernist WarfareTutorials
|
||||||
|
Disconnected
|
|
|
|
|
Play: Modernist Warfare
|
||||||
Click star to add your rating.
2012-02-11
This is my minimalist video game. According to Clement Greenberg, who helped popularize the term, medium specificity holds that “the unique and proper area of competence” for a form of art corresponds with the ability of an artist to manipulate those features that are “unique to the nature” of a particular medium. I have tried to reduce down the video game medium to its mos…
show moreusing UnityEngine;
using System.Collections;
public class Forward : MonoBehaviour {
void Update(){
if(Input.anyKey){
transform.Translate(Vector3.forward*1f);
}
}
}