VideoTexture.hx 322 B

123456789
  1. package flash.display3D.textures;
  2. @:final extern class VideoTexture extends TextureBase {
  3. var videoHeight(default,null) : Int;
  4. var videoWidth(default,null) : Int;
  5. function new() : Void;
  6. function attachCamera(theCamera : flash.media.Camera) : Void;
  7. function attachNetStream(netStream : flash.net.NetStream) : Void;
  8. }