Adding warning if "template" object is used as a variable
This commit is contained in:
parent
bf17ad4567
commit
0aa93543bc
4 changed files with 40 additions and 3 deletions
|
@ -48,6 +48,10 @@ export class SharedVariablesManager {
|
|||
if (layer.type === 'objectgroup') {
|
||||
for (const object of layer.objects) {
|
||||
if (object.type === 'variable') {
|
||||
if (object.template) {
|
||||
console.warn('Warning, a variable object is using a Tiled "template". WorkAdventure does not support objects generated from Tiled templates.')
|
||||
}
|
||||
|
||||
// We store a copy of the object (to make it immutable)
|
||||
objects.set(object.name, this.iTiledObjectToVariable(object));
|
||||
}
|
||||
|
|
|
@ -141,6 +141,7 @@ export interface ITiledMapObject {
|
|||
polyline: { x: number; y: number }[];
|
||||
|
||||
text?: ITiledText;
|
||||
template?: string;
|
||||
}
|
||||
|
||||
export interface ITiledText {
|
||||
|
|
|
@ -190,7 +190,7 @@ window.addEventListener(
|
|||
}
|
||||
const payload = message.data;
|
||||
|
||||
console.debug(payload);
|
||||
//console.debug(payload);
|
||||
|
||||
if (isIframeErrorAnswerEvent(payload)) {
|
||||
const queryId = payload.id;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue