still sorting out time...

master
Marcus Gosselin 2016-02-23 08:02:21 -05:00
parent 69a33d1ede
commit 448191534a
4 changed files with 7 additions and 11 deletions

View File

@ -15,5 +15,9 @@ End Component
Component RigidBody
$name = "poop"
$friction = .9F
$friction = .1F
End Component
Component EnemyAI
$radius = 200i
End Component

View File

@ -11,15 +11,6 @@ End Component
Template player
#[diveengine2d.Entity]
#$GUID = "9e477f6d-778d-43e2-afe0-028a0a99cd74"
#$name = "Enemy Spawner"
#Component spacewars.EnemySpawner
#$spawnSpeed = 100i;
#End Component
#scene manager. in charge of those enemy spawns yo
[Entity]
$name = "Scene Manager"
Component SceneManager

View File

@ -5,7 +5,7 @@ $name = "Player"
Component spacewars.PlayerController
$name = "player controller"
$message = "hello from the script!"
$speed = 1f
$speed = .00000000001f
End Component
Component RectRenderer

View File

@ -8,6 +8,7 @@ import diveengine2d.DiveScript;
import diveengine2d.Input;
import diveengine2d.RectRenderer;
import diveengine2d.RigidBody;
import diveengine2d.Time;
public class PlayerController extends DiveScript implements KeyListener {
public String message = null;