All pastes #2104458 Raw Edit

Mine

public text v1 · immutable
#2104458 ·published 2012-01-20 12:30 UTC
rendered paste body
function OnGUI() {
    Event e = Event.current;
    if (e.isKey && e.character == 'g') {
       transform.position = Vector3(1, 2, 3);
    }
}