| prov:value
| - Packed color basically packs the rgba component into a single 32 bit float and passes directly, non packed uses 4 32 bit floats for rgba.So packed looks like this, where c is the color as a 32 bit float1 {x, y, c, u, v}And unpacked1 {x, y, r, g, b, a, u, v}The above example is a bit slow, those 15k sprites are 15k Dynamic GameObjects moving around, so a full transformation matrix is computed for e
|