summaryrefslogtreecommitdiff
path: root/modules/gltf/structures
AgeCommit message (Collapse)Author
2022-12-10Consistently use `p_` for parameters in GLTFDocumentAaron Franke
2022-11-29GLTF: Clean up lots of includesAaron Franke
2022-11-09Change the way GLTFDocumentExtension classes are registeredAaron Franke
Also move GLTFDocumentExtension into the extensions folder
2022-10-15Add a way to store additional data in GLTFState and GLTFNodeAaron Franke
2022-10-03GLTF imports & exports material texture filtersThe Tophat Demon
2022-09-04Don't try to read values from null cameras and lights in GLTFAaron Franke
2022-09-01Change Array arguments to TypedArraykobewi
2022-08-28Move GLTF camera conversion code into GLTFCameraAaron Franke
2022-08-26Rename `str2var` to `str_to_var` and similarMicky
Affects the Math class, a good chunk of the audio code, and a lot of other miscellaneous classes, too. - `var2str` -> `var_to_str` - `str2var` -> `str_to_var` - `bytes2var` -> `bytes_to_var` - `bytes2var_with_objects` -> `bytes_to_var_with_objects` - `var2bytes` -> `var_to_bytes` - `var2bytes_with_objects` -> `var_to_bytes_with_objects` - `linear2db` -> `linear_to_db` - `db2linear` -> `db_to_linear` - `deg2rad` -> `deg_to_rad` - `rad2deg` -> `rad_to_deg` - `dict2inst` -> `dict_to_inst` - `inst2dict` -> `inst_to_dict`
2022-08-24Replace Array return types with TypedArray 3kobewi
2022-08-14GLTF: Fix orthographic cameras, internally store data in GLTF's formatAaron Franke
2022-07-25Code quality: Fix header guards consistencyRĂ©mi Verschelde
Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
2022-07-24GLTF: Organize structures into a subfolderAaron Franke