SceneImage.js 714 B

12345678910111213141516171819202122
  1. function SceneImage() {
  2. }
  3. SceneImage.prototype.Clone = function(deepClone,ignoreEditorOnly) {
  4. Polycode.SceneImage_Clone(this.__ptr, deepClone,ignoreEditorOnly)
  5. }
  6. SceneImage.prototype.applyClone = function(clone,deepClone,ignoreEditorOnly) {
  7. Polycode.SceneImage_applyClone(this.__ptr, clone,deepClone,ignoreEditorOnly)
  8. }
  9. SceneImage.prototype.setImageCoordinates = function(x,y,width,height,realWidth,realHeight) {
  10. Polycode.SceneImage_setImageCoordinates(this.__ptr, x,y,width,height,realWidth,realHeight)
  11. }
  12. SceneImage.prototype.getImageWidth = function() {
  13. Polycode.SceneImage_getImageWidth(this.__ptr)
  14. }
  15. SceneImage.prototype.getImageHeight = function() {
  16. Polycode.SceneImage_getImageHeight(this.__ptr)
  17. }