Source: Engine/AxSerializationParameters.js

/**
 * Creates an object which contains parameters used for serialization
 * @constructor
 */
function AxSerializationParameters()
{
    // The root dir for the serialization. Used as a base for relative paths. Can be used when loading from a stream, when fullSourceName is not available
    this.rootDir = new AxString();
    // A friendly name of the serialization source. Used when such is needed, for example to give names to resources
    this.friendlyName = new AxString();
    // The full name of the source. Generally, the path with file name.
    this.fullSourceName = new AxString();
}

Documentation generated by JSDoc 3.5.3 on Mon Feb 19 2018 20:39:26 GMT+0200 (FLE Standard Time)