neos-script
Version:
[neos-script-sample](https://github.com/rheniumNV/neos-script-sample)
23 lines (22 loc) • 3.13 kB
JavaScript
;
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.ParticleSystem = void 0;
var jsx_runtime_1 = require("neos-script/jsx-runtime");
var core_1 = require("../../../core");
function ParticleSystem(props) {
var id = props.id, persistentId = props.persistentId, updateOrder = props.updateOrder, Enabled = props.Enabled, MaxParticles = props.MaxParticles, Style = props.Style, SimulationSpace = props.SimulationSpace;
return ((0, jsx_runtime_1.jsxs)(core_1.Component, __assign({ type: "FrooxEngine.ParticleSystem", id: id, persistentId: persistentId, updateOrder: updateOrder }, { children: [(0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Boolean]", name: "Enabled", id: typeof Enabled === "object" && "id" in Enabled ? Enabled === null || Enabled === void 0 ? void 0 : Enabled.id : undefined, value: typeof Enabled === "object" && "value" in Enabled ? Enabled === null || Enabled === void 0 ? void 0 : Enabled.value : Enabled !== null && Enabled !== void 0 ? Enabled : true, isRaw: typeof Enabled === "object" && "isRaw" in Enabled && Enabled.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Int32]", name: "MaxParticles", id: typeof MaxParticles === "object" && "id" in MaxParticles ? MaxParticles === null || MaxParticles === void 0 ? void 0 : MaxParticles.id : undefined, value: typeof MaxParticles === "object" && "value" in MaxParticles ? MaxParticles === null || MaxParticles === void 0 ? void 0 : MaxParticles.value : MaxParticles, isRaw: typeof MaxParticles === "object" && "isRaw" in MaxParticles && MaxParticles.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.ParticleStyle]", name: "Style", id: typeof Style === "object" && "id" in Style ? Style === null || Style === void 0 ? void 0 : Style.id : undefined, value: typeof Style === "object" && "value" in Style ? Style === null || Style === void 0 ? void 0 : Style.value : Style, isRaw: typeof Style === "object" && "isRaw" in Style && Style.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.RootSpace", name: "SimulationSpace", id: typeof SimulationSpace === "object" && "id" in SimulationSpace ? SimulationSpace === null || SimulationSpace === void 0 ? void 0 : SimulationSpace.id : undefined, value: typeof SimulationSpace === "object" && "value" in SimulationSpace ? SimulationSpace === null || SimulationSpace === void 0 ? void 0 : SimulationSpace.value : SimulationSpace, isRaw: typeof SimulationSpace === "object" && "isRaw" in SimulationSpace && SimulationSpace.isRaw ? true : undefined })] })));
}
exports.ParticleSystem = ParticleSystem;
;