-small motion demo, to better troubleshoot

This commit is contained in:
Juan Linietsky 2015-05-16 17:05:56 -03:00
parent 568f9773ed
commit a74cf7cd22
4 changed files with 42 additions and 0 deletions

BIN
2d/motion/car.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

4
2d/motion/engine.cfg Normal file
View File

@ -0,0 +1,4 @@
[application]
name="Motion Test"
main_scene="res://motion.scn"

38
2d/motion/motion.gd Normal file
View File

@ -0,0 +1,38 @@
extends Sprite
export var use_idle=true
# member variables here, example:
# var a=2
# var b="textvar"
const BEGIN = -113
const END = 907
const TIME = 5.0 # seconds
const SPEED = (END-BEGIN)/TIME
func _process(delta):
var ofs = get_pos()
ofs.x+=delta*SPEED
if (ofs.x>END):
ofs.x=BEGIN
set_pos(ofs)
func _fixed_process(delta):
var ofs = get_pos()
ofs.x+=delta*SPEED
if (ofs.x>END):
ofs.x=BEGIN
set_pos(ofs)
func _ready():
# Initialization here
if (use_idle):
set_process(true)
else:
set_fixed_process(true)
pass

BIN
2d/motion/motion.scn Normal file

Binary file not shown.