Load a json file that describe a tileset in Tile format.
Then add it to the tilemap of the GameScene Then add if to the GameMap
This commit is contained in:
parent
5a56c20221
commit
73d589ad11
11 changed files with 407 additions and 68 deletions
|
@ -1,4 +1,4 @@
|
|||
import { Observable, Subject } from "rxjs";
|
||||
import { Subject } from "rxjs";
|
||||
|
||||
import { EnterLeaveEvent, isEnterLeaveEvent } from "../Events/EnterLeaveEvent";
|
||||
|
||||
|
@ -105,6 +105,14 @@ export class WorkadventureRoomCommands extends IframeApiContribution<Workadventu
|
|||
}
|
||||
return mapURL;
|
||||
}
|
||||
async loadTileset(url: string): Promise<number> {
|
||||
return await queryWorkadventure({
|
||||
type: "loadTileset",
|
||||
data: {
|
||||
url: url,
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export default new WorkadventureRoomCommands();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue