Property()
This class works in a project you run on your own computer, but not in the examples you can start here in the browser. There is no file system, no video encoder and no OpenGL behind a web page, so calling it there tells you as much and does nothing.
The Property class represents a property of a Tiled object. It includes fields for the property name, type, and value.
Example usage:
Property p = new Property();
p.name = "myProperty";
p.type = "number";
p.value = "42";
Syntax
Java
new Property()