Support of Enter Room Scene

This commit is contained in:
Akka
2022-05-05 22:00:11 +08:00
committed by Melledy
parent 782c9bfb6b
commit 3f34aa0460
3 changed files with 68 additions and 1 deletions

View File

@@ -13,7 +13,8 @@ public class PointData {
private Position tranPos;
private int[] dungeonIds;
private int[] dungeonRandomList;
private int tranSceneId;
public int getId() {
return id;
}
@@ -38,6 +39,14 @@ public class PointData {
return dungeonRandomList;
}
public int getTranSceneId() {
return tranSceneId;
}
public void setTranSceneId(int tranSceneId) {
this.tranSceneId = tranSceneId;
}
public void updateDailyDungeon() {
if (getDungeonRandomList() == null) {
return;