Add type attributes to help codegen.

PiperOrigin-RevId: 937935655
Change-Id: I14883a98b7b9b4bcc3dea8b60d839138c14ea444
This commit is contained in:
Haroon Qureshi
2026-06-25 05:59:54 -07:00
committed by Copybara-Service
parent 463b0fb27f
commit 2a5345ba8c
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -11013,12 +11013,12 @@ STRUCTS: Mapping[str, StructDecl] = dict([
StructFieldDecl(
name='usage',
type=ValueType(name='int'),
doc='mjrVertexAttributeUsage; e.g. position, normal, etc.',
doc='position, normal, etc [mjrVertexAttributeUsage]',
),
StructFieldDecl(
name='type',
type=ValueType(name='int'),
doc='mjrVertexAttributeType; e.g. float3, ubyte4, etc.',
doc='float3, ubyte4, etc. [mjrVertexAttributeType]',
),
),
)),