Fixed indices component size being too large

This commit is contained in:
Lucas Dower 2022-06-13 21:28:21 +01:00
parent 7b9e4ed67e
commit 77b0e2f610

View File

@ -18,7 +18,7 @@ export namespace AppConstants {
export const POSITION = ComponentSize.POSITION * COMPONENT_PER_SIZE_OFFSET;
export const COLOUR = ComponentSize.COLOUR * COMPONENT_PER_SIZE_OFFSET;
export const NORMAL = ComponentSize.NORMAL * COMPONENT_PER_SIZE_OFFSET;
export const INDICES = ComponentSize.INDICES * COMPONENT_PER_SIZE_OFFSET;
export const INDICES = 36;
export const OCCLUSION = ComponentSize.OCCLUSION * COMPONENT_PER_SIZE_OFFSET;
}
}