Go.property error on bundling to iOS (SOLVED)

When bundling to iOS with Defold v2.1.181 I get an error:

Line 10: Only these types are available: number, hash, msg.url, vmath.vector3, vmath.vector4, vmath.quat, resource.*

Line 10 looks like this:

go.property("tint", vmath.vector4(1))

What’s up with this? Could it be that I’m using the shorthand for vmath.vector4(1,1,1,1)?

Yes, it could be. What happens if you try vmath.vector4(1,1,1,1)?

1 Like

It works! Happy days.