Skip to content

Commit

Permalink
[as3] Fixed compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanSweet committed Jun 29, 2021
1 parent b8bf2a9 commit 70e86e2
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 40 deletions.
18 changes: 9 additions & 9 deletions spine-as3/spine-as3-example/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "swf",
"request": "launch",
"name": "Launch spine-as3-example",
"preLaunchTask": "Compile debug"
}
]
"version": "0.2.0",
"configurations": [
{
"type": "swf",
"request": "launch",
"name": "Launch spine-as3-example",
"preLaunchTask": "Compile debug"
}
]
}
16 changes: 8 additions & 8 deletions spine-as3/spine-as3-example/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Compile debug",
"type": "actionscript",
"debug": true
}
]
"version": "2.0.0",
"tasks": [
{
"label": "Compile debug",
"type": "actionscript",
"debug": true
}
]
}
24 changes: 12 additions & 12 deletions spine-as3/spine-as3-example/asconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"compilerOptions": {
"output": "bin/spine-as3-example.swf",
"source-path": [
"src",
"../spine-as3/src"
],
"default-size": {
"width": 550,
"height": 500
},
"target-player": "32.0",
"swf-version": 43
},
"output": "bin/spine-as3-example.swf",
"source-path": [
"src",
"../spine-as3/src"
],
"default-size": {
"width": 550,
"height": 500
},
"target-player": "32.0",
"swf-version": 43
},
"files": [
"src/spine/examples/Main.as"
]
Expand Down
4 changes: 2 additions & 2 deletions spine-as3/spine-as3/asconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"include-sources": [
"src"
],
"output": "../spine-as3/lib/spine-as3.swc",
"target-player": "32.0"
"output": "../spine-as3/lib/spine-as3.swc",
"target-player": "32.0"
}
}
1 change: 0 additions & 1 deletion spine-as3/spine-as3/src/spine/animation/AnimationState.as
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,6 @@ package spine.animation {
animationsChanged = false;

propertyIDs.clear();
var tracks = this.tracks;
for (var i : int = 0, n : int = tracks.length; i < n; i++) {
var entry : TrackEntry = tracks[i];
if (!entry) continue;
Expand Down
16 changes: 8 additions & 8 deletions spine-starling/spine-starling/asconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
"../../spine-as3/spine-as3/src"
],
"include-sources": [
"src",
"../../spine-as3/spine-as3/src"
],
"external-library-path": [
"starling-2.4.swc"
],
"output": "lib/spine-starling.swc",
"target-player": "32.0"
"src",
"../../spine-as3/spine-as3/src"
],
"external-library-path": [
"starling-2.4.swc"
],
"output": "lib/spine-starling.swc",
"target-player": "32.0"
}
}

0 comments on commit 70e86e2

Please sign in to comment.