Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
0.1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
Aloento committed Jan 20, 2021
1 parent 0058fac commit 9b0c017
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.QYun</groupId>
<artifactId>SuperSpineViewer</artifactId>
<name>SuperSpineViewer</name>
<version>0.1.22</version>
<version>0.1.23</version>
<url>https://github.com/soarteam/SuperSpineViewer</url>
<developers>
<developer>
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/com/QYun/Spine/Latency.java
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,8 @@ void render() {
}

void resize() {
float x = camera.position.x, y = camera.position.y;
camera.setToOrtho(false);
camera.position.set(camera.position.x, camera.position.y, 0);
camera.position.set(x, y, 0);
}
}
3 changes: 2 additions & 1 deletion src/main/java/com/QYun/Spine/Preview.java
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,9 @@ void render() {
}

void resize() {
float x = camera.position.x, y = camera.position.y;
camera.setToOrtho(false);
camera.position.set(camera.position.x, camera.position.y, 0);
camera.position.set(x, y, 0);
}

}
3 changes: 2 additions & 1 deletion src/main/java/com/QYun/Spine/Standard.java
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,8 @@ void render() {
}

void resize() {
float x = camera.position.x, y = camera.position.y;
camera.setToOrtho(false);
camera.position.set(camera.position.x, camera.position.y, 0);
camera.position.set(x, y, 0);
}
}
2 changes: 1 addition & 1 deletion src/main/java/com/QYun/SuperSpineViewer/RecordFX.java
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ private void ffmpegFX() {
"-c:v", "png", "-pix_fmt", "rgba",
"-filter:v", "\"setpts=0.5*PTS\"",
rootPath + fileName + ".mov"
}).waitFor() == 0) {
}, new String[]{System.getProperty("user.dir")}).waitFor() == 0) {
File sequence = new File(rootPath + "Sequence" + File.separator);
for (String file : Objects.requireNonNull(sequence.list()))
new File(sequence, file).delete();
Expand Down

0 comments on commit 9b0c017

Please sign in to comment.