25 lines
827 B
JavaScript
25 lines
827 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.VariationTemplates = void 0;
|
||
|
class VariationTemplates {
|
||
|
}
|
||
|
exports.VariationTemplates = VariationTemplates;
|
||
|
VariationTemplates.genericOnlyIntNode = [
|
||
|
{
|
||
|
"{DataTypeName}": ["Int"],
|
||
|
"{DataType}": ["int"],
|
||
|
"{Extension}": [""],
|
||
|
"{ParentClass}": ["Node"]
|
||
|
}
|
||
|
];
|
||
|
VariationTemplates.generic = [
|
||
|
{
|
||
|
"{DataTypeName}": ["Bool", "Float", "Int", "Color", "Vector2", "Vector3", "Quaternion", "String", "Node", "Resource"],
|
||
|
"{DataType}": ["bool", "float", "int", "Color", "Vector2", "Vector3", "Quaternion", "String", "Ref<Node>", "Ref<Resource>"]
|
||
|
},
|
||
|
{
|
||
|
"{Extension}": ["", "Global"],
|
||
|
"{ParentClass}": ["Node", "Resource"]
|
||
|
}
|
||
|
];
|
||
|
//# sourceMappingURL=VariationTemplates.js.map
|