writing normal customdata was failing because vec3f type wasn't stored in SDNA.
This commit is contained in:
@@ -61,11 +61,11 @@ typedef struct vec2d {
|
||||
typedef struct vec3i {
|
||||
int x, y, z;
|
||||
} vec3i;
|
||||
|
||||
*/
|
||||
typedef struct vec3f {
|
||||
float x, y, z;
|
||||
} vec3f;
|
||||
|
||||
/*
|
||||
typedef struct vec3d {
|
||||
double x, y, z;
|
||||
} vec3d;
|
||||
|
||||
Reference in New Issue
Block a user