Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
6f9fe7b1
Commit
6f9fe7b1
authored
Oct 19, 2015
by
Viktor Lidholt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updates physics test
parent
1e228618
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
test_physics.dart
examples/game/test_physics.dart
+7
-0
No files found.
examples/game/test_physics.dart
View file @
6f9fe7b1
...
...
@@ -55,6 +55,7 @@ class TestBed extends NodeWithSize {
_obstacle
=
new
Sprite
(
_spriteSheet
[
"ship.png"
]);
_obstacle
.
position
=
new
Point
(
512.0
,
800.0
);
_obstacle
.
size
=
new
Size
(
64.0
,
64.0
);
_obstacle
.
scale
=
2.0
;
_obstacle
.
physicsBody
=
new
PhysicsBody
(
new
PhysicsShapeCircle
(
Point
.
origin
,
32.0
),
type:
PhysicsBodyType
.
static
,
...
...
@@ -71,6 +72,12 @@ class TestBed extends NodeWithSize {
]);
_obstacle
.
actions
.
run
(
new
ActionRepeatForever
(
seq
));
seq
=
new
ActionSequence
([
new
ActionTween
((
a
)
=>
_obstacle
.
scale
=
a
,
1.0
,
2.0
,
2.0
,
easeInOut
),
new
ActionTween
((
a
)
=>
_obstacle
.
scale
=
a
,
2.0
,
1.0
,
2.0
,
easeInOut
)
]);
_obstacle
.
actions
.
run
(
new
ActionRepeatForever
(
seq
));
addChild
(
_physicsNode
);
userInteractionEnabled
=
true
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment