Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/barelief/ghettoteleport

Transform/rotate object with WASD+ and save/load in Unity
https://github.com/barelief/ghettoteleport

Last synced: about 2 months ago
JSON representation

Transform/rotate object with WASD+ and save/load in Unity

Awesome Lists containing this project

README

        

# GhettoTeleport
Transform/rotate object with WASD+ and save/load in Unity

Shortcuts:
```
wasd - move
rf - up/down
qe - rotate
k - save
l - load
+- - sensitivity
p - display sensitivity
0 - set rotation to zero
8 - set rotation to 180
9 - set rotation to 90
```

if you have many Objects with this script, you can disable/enable Script from particular object this way:

```
public GameObject fooObject; // before Start()
(...)
GhettoTeleport temp = fooObject.GetComponent("GhettoTeleport") as GhettoTeleport;
temp.enabled = false;
```