|
@@ -203,7 +203,7 @@ export class ImageTracker extends AREventTarget<ImageTrackerEventType> implement
|
203
|
203
|
}
|
204
|
204
|
|
205
|
205
|
/**
|
206
|
|
- * Resolution of the AR screen space
|
|
206
|
+ * Resolution of the tracker
|
207
|
207
|
*/
|
208
|
208
|
get resolution(): Resolution
|
209
|
209
|
{
|
|
@@ -211,11 +211,13 @@ export class ImageTracker extends AREventTarget<ImageTrackerEventType> implement
|
211
|
211
|
}
|
212
|
212
|
|
213
|
213
|
/**
|
214
|
|
- * Resolution of the AR screen space
|
|
214
|
+ * Resolution of the tracker
|
|
215
|
+ * @readonly
|
215
|
216
|
*/
|
216
|
217
|
set resolution(resolution: Resolution)
|
217
|
218
|
{
|
218
|
|
- this._resolution = resolution;
|
|
219
|
+ // this property is readonly, but this setter has been kept because
|
|
220
|
+ // it wasn't readonly in previous versions of the engine. FIXME
|
219
|
221
|
}
|
220
|
222
|
|
221
|
223
|
/**
|