123456789101112131415 |
- this.initialize = function () {
- }
- this.setParams = function(w, h) {
-
- let width = this.properties.subcamWidth;
- let height = this.properties.subcamHeight;
-
- vwf_view.kernel.setProperty(this.id, "subcamWidth", 1);
- vwf_view.kernel.setProperty(this.id, "subcamHeight", 1);
- vwf_view.kernel.setProperty(this.id, "subcamWidth", width);
- vwf_view.kernel.setProperty(this.id, "subcamHeight", height);
- }
|