Skip to content

v8.0.0-rc.5

Pre-release
Pre-release
Compare
Choose a tag to compare
@Zyie Zyie released this 19 Jan 10:44
· 401 commits to dev since this release

ℹ️ INFO

If you have any questions or issues we are actively monitoring our discord and github issues!

💾 Download

Development Build:

Production Build:

Documentation:

Changed

v8.0.0-rc.4...v8.0.0-rc.5

🔥 Breaking

  • Breaking: smarter geometry attributes by @GoodBoyDigital in #10118

    • This PR renamed shaderLocation to location

    Old:

      const geometry = new Geometry({
          attributes: {
              aPosition: {
                  buffer:[-100, -50, 100, -50, 0, 100],
                  shaderLocation:0,
                  format: 'float32x2',
              },
              aColor: {
                  buffer:[1, 0, 0, 0, 1, 0, 0, 0, 1],
                  shaderLocation:1,
                  format: 'float32x3',
              }
          },
      })

    New:

      const geometry = new Geometry({
          attributes: {
              aPosition: {
                  buffer:[-100, -50, 100, -50, 0, 100],
                  location:0,
                  format: 'float32x2',
              },
              aColor: {
                  buffer:[1, 0, 0, 0, 1, 0, 0, 0, 1],
                  location:1,
                  format: 'float32x3',
              }
          },
      })

🎁 Added

🐛 Fixed