最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

pixi.js - Pixi JS: Understanding Logic Behind Arranging Objects in ScrollBox - Stack Overflow

programmeradmin2浏览0评论

I'm trying to figure out the logic behind the arranging elements in the Pixi JS ScrollBox.

I created a list of Graphics objects (squares) with the same size and offset. When the list is passed to a ScrollBox object, the offset (actually, only the half due to the stroke thickness) is kept at the left and upper borders of the window but disregarded between the squares.

const sbItems: Graphics[] = [];
for (let r = 0; r < 10; ++r) {
  for (let c = 0; c < 5; ++c) {
    sbItems.push(
      new Graphics()
        .roundRect(10, 10, 95, 95, 15)
        .fill('orange')
        .stroke({ width: 5, color: 'white' })
    );
  }
}
const scrollBox: ScrollBox = new ScrollBox({
  width: 0.9 * app.screen.width,
  height: 10 * app.screen.height,
  items: sbItems
});

Here is the result:

Also, the PixiJS DevTools shows the following positions for the squares:

The positions of the ScrollBox and the List are also {x: 0, y: 0}:

Question: How are objects arranged in the Pixi JS ScrollBox?

发布评论

评论列表(0)

  1. 暂无评论