nativescript-ar
Version:
NativeScript Augmented Reality plugin. ARKit on iOS and (with the help of Sceneform) ARCore on Android.
15 lines (14 loc) • 486 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var arcommon_1 = require("./arcommon");
var ARGroup = (function (_super) {
__extends(ARGroup, _super);
function ARGroup() {
return _super !== null && _super.apply(this, arguments) || this;
}
ARGroup.create = function (options, renderer) {
return new ARGroup(options, SCNNode.node(), renderer);
};
return ARGroup;
}(arcommon_1.ARCommonNode));
exports.ARGroup = ARGroup;