Difference between stage.width and stage.stageWidth

前端 未结 2 920
孤独总比滥情好
孤独总比滥情好 2021-02-19 07:32

In actionscript 3 (as3) What is the difference between calling stage.width and stage.stageWidth

This was something I remember I got confused about in the past (Adobe\'s

2条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-19 08:00

    stageWidth is basically width of the player window. You probably need this number if you want to know size of your scene. stage.width is calculated as any other width in actionscript. This means, it is width of bounding box around child objects of the stage. For example stage.width of empty.stage is 0. Or if you have only one small square 10 px wide on scene lets say 200px wide, stageWidth is 200, but stage.width is 10

    .stageWidth VS .width, visually

提交回复
热议问题