Box2D调试器不与Starling一起使用

时间:2015-01-27 21:02:47

标签: actionscript-3 debugging box2d starling-framework

我正在使用Box2D和Starling的最新版本,我正在尝试使用Box2D调试器,但到目前为止没有任何工作,这是我尝试的,我在stage3D层的顶部添加了一个Flash层,所以我将能够使用Flash Sprite,我正在网上运行我的应用程序。

主要类别:

    public function BallFriction()
    {
        this.addEventListener(Event.ADDED_TO_STAGE, onReady, false, 0, true);
    }

    private function onReady(event : Event) : void
    {
        this.removeEventListener(Event.ADDED_TO_STAGE, onReady);


        var stats:Stats = new Stats();
        stats.y = 500;
        stats.x = 50;
        this.addChild(stats);

        stage.color = 0x333333;
        stage.stage3Ds[0].addEventListener(Event.CONTEXT3D_CREATE, onContextCreated);

        oStarling = new Starling(Game, stage);
        //          akaStarling = new Starling(BoxWorld, stage);
        oStarling.antiAliasing = 1;
        oStarling.start();


    }

    private function onContextCreated(e:Event):void{
        //debug mode
        debugSprite=new Sprite();
        addChild(debugSprite);

        (BallFriction.oStarling.stage.getChildAt(0) as Game).debugDraw(BallFriction.debugSprite);
    }

游戏世界:

  public function Game() 
    {
        super();

        // Create a b2World with gravity 9.8 towards y axis. 
        world = new b2World(new b2Vec2(0, 9.8), true);

        floor(400,590,800,20);
        theBall = ball(100,400,ballWidth/2,Texture.fromBitmap(new Ball()));
        // I also set the velocity of the ball
        theBall.SetLinearVelocity(new b2Vec2(8, -8));

        // Listen enterframe event and update world for each enter frame
        this.addEventListener(EnterFrameEvent.ENTER_FRAME, updateWorld);
        this.addEventListener(Event.ADDED_TO_STAGE, onAddedToStage);
    }

    private function onAddedToStage():void
    {
        this.removeEventListener(Event.ADDED_TO_STAGE, onAddedToStage);

        //(BallFriction.oStarling.stage.getChildAt(0) as Game).debugDraw(BallFriction.debugSprite);

    }

 private function updateWorld(e:EnterFrameEvent):void
    {
        world.Step(timestep, 10, 10);
        world.DrawDebugData()
        world.ClearForces();
    }

    public function debugDraw(debugSprite:flash.display.Sprite):void{
        var debugDraw:b2DebugDraw = new b2DebugDraw();
        debugDraw.SetSprite(Starling.current.nativeOverlay);
        debugDraw.SetDrawScale(30);
        debugDraw.SetLineThickness( 1.0);
        debugDraw.SetAlpha(1);
        debugDraw.SetFillAlpha(0.4);
        debugDraw.SetFlags(b2DebugDraw.e_shapeBit);
        world.SetDebugDraw(debugDraw);
    }

2 个答案:

答案 0 :(得分:3)

看起来您没有使用b2DebugDraw.AppendFlag()b2DebugDraw.SetFlags()向调试绘制逻辑添加任何标志;标志告诉调试绘制它需要在屏幕上绘制什么样的信息。很可能你会想要使用b2DebugDraw.e_shapeBit标志。

看起来你并没有使用b2Debug.SetDrawScale()来定义绘制比例,但我现在还不确定是否能够立即检查它是否绝对必要。

在我的游戏框架中查看Debug类可能会帮助你解决这个问题。

答案 1 :(得分:1)

每次致电world.DrawDebugData()

时,您都必须致电step()