VideoTexture.hx 324 B

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