Stage3D.hx 459 B

12345678910
  1. package flash.display;
  2. @:require(flash11) extern class Stage3D extends flash.events.EventDispatcher {
  3. var context3D(default,null) : flash.display3D.Context3D;
  4. var visible : Bool;
  5. var x : Float;
  6. var y : Float;
  7. function requestContext3D(?context3DRenderMode : flash.display3D.Context3DRenderMode, ?profile : flash.display3D.Context3DProfile) : Void;
  8. @:require(flash12) function requestContext3DMatchingProfiles(profiles : flash.Vector<String>) : Void;
  9. }