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

Commit

Permalink
1.0.0!
Browse files Browse the repository at this point in the history
  • Loading branch information
Aloento committed Jan 23, 2021
1 parent 99a078b commit f8fd1c2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
一个拿来加载与导出Spine动画的工具
至少需要Java15才能运行
或使用打包好的exe程序
当前版本:0.1.29
当前版本:1.0.0

![霜叶](https://i0.hdslb.com/bfs/album/[email protected] "明日方舟 - 霜叶")

Expand Down
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.29</version>
<version>1.0.0</version>
<url>https://github.com/soarteam/SuperSpineViewer</url>
<developers>
<developer>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.QYun</groupId>
<artifactId>SuperSpineViewer</artifactId>
<version>0.1.29</version>
<version>1.0.0</version>
<repositories>
<repository>
<id>sonatype</id>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/esotericsoftware/SpineLegacy/Slot.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ public class Slot {
final SlotData data;
final Bone bone;
final Color color;
private final FloatArray attachmentVertices = new FloatArray();
Attachment attachment;
private float attachmentTime;
private final FloatArray attachmentVertices = new FloatArray();

public Slot(SlotData data, Bone bone) {
if (data == null) throw new IllegalArgumentException("data cannot be null.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ protected TrackEntry newObject() {
private final EventQueue queue = new EventQueue();
private final IntSet propertyIDs = new IntSet();
private final Array<TrackEntry> mixingTo = new Array<>(); // Spine36
boolean animationsChanged;
private final AnimationStateData data;
boolean animationsChanged;
private float timeScale = 1;
private int unKeyedState;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/esotericsoftware/SpineStandard/Slot.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ public class Slot {
final SlotData data;
final Bone bone;
final Color color = new Color();
private final FloatArray deform = new FloatArray();
Color darkColor;
Attachment attachment;
int attachmentState;
private float attachmentTime;
private final FloatArray deform = new FloatArray();

public Slot(SlotData data, Bone bone) {
if (data == null) throw new IllegalArgumentException("data cannot be null.");
Expand Down

0 comments on commit f8fd1c2

Please sign in to comment.