writeInto method
Writes all fields directly into the native struct reference p.
For nested structs, use writeInto as well.
Implementation
@override
void writeInto(Camera3DC p) {
position.writeInto(p.position);
target.writeInto(p.target);
up.writeInto(p.up);
p.fovy = fovy;
p.projection = projection.value;
}