Support of Enter Room Scene

This commit is contained in:
Akka
2022-05-05 22:00:11 +08:00
committed by Melledy
parent 243db37fd6
commit 9ee9d7e686
5 changed files with 103 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;