summaryrefslogtreecommitdiffstats
path: root/modules/gltf/gltf_state.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@87318a2fb7fffeb72adca934e31915be077c3d1fSpartan3222024-11-061-1/+23
|\
| * GLTF: Add extract_path and extract_prefix settingsAaron Franke2024-11-041-1/+23
| | | | | | | | Only used by the Blender importer
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* GLTF: Add append_gltf_node to GLTFStateAaron Franke2024-09-021-0/+14
|
* Add bake_fps for FBXDocument, GLTFDocument and both import-export.K. S. Ernest (iFire) Lee2024-05-231-0/+3
|
* Add new scene import option to import as SkeletonLyuma2024-02-261-0/+11
| | | | | | Adds a bool import option `nodes/import_as_skeleton_bones`. This is supported in all FBX or GLTF document based formats. It is especially useful for retargeting and importing animations.
* Misc changes to the GLTF module before audio PRAaron Franke2024-01-111-0/+28
|
* Fix "as" capitalization in editor stringsHaoyu Qiu2023-10-231-1/+1
|
* Expose filename in GLTFStateAaron Franke2023-08-031-2/+13
|
* Add copyright to GLTFStateAaron Franke2023-07-101-0/+11
|
* Add a get_node_index method to GLTFStateAaron Franke2023-05-271-0/+10
|
* GLTF: Delete unused skeleton_to_nodeAaron Franke2023-02-261-11/+0
|
* gltf: Add GLTFHandleBinary::HANDLE_BINARY_EMBED_AS_UNCOMPRESSEDLyuma2023-02-011-1/+2
| | | | | | | | This option allows for a safe fallback for embedded gltf textures in cases where VRAM compression is not needed. Add an is_editor_hint guard around GLTFHandleBinary::HANDLE_BINARY_EXTRACT_TEXTURES, to use EMBED_AS_UNCOMPRESSED by default at runtime. This provides an option for pixel art to be stored losslessly. Additionally, respect project importer defaults for texture import settings. Avoid writing and reimporting extracted textures identical to version on disk.
* Handle gltf binaryK. S. Ernest (iFire) Lee2023-01-271-0/+7
| | | | | | | | | | | | [ Ignore and Warn | Extract Textures (default) | Optimize Loading Embedded as Basisu ] Enable compressed mip maps from Basis Universal for faster compressions. Increase the quality of Basis to avoid corruption. To keep compatibility use the first mip of the previous internal Godot format. Because texture names may have invalid filename characters, adds String::validate_filename to sanitize filenames for import pipeline use.
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* GLTF: Clean up lots of includesAaron Franke2022-11-291-0/+2
|
* Cache materials in gltf as the abstract class of MaterialK. S. Ernest (iFire) Lee2022-11-241-2/+2
| | | | Use the abstract material class instead of BaseMaterial3D. This allows inserting ShaderMaterials into gltf. Like in VRM.
* Add a way to store additional data in GLTFState and GLTFNodeAaron Franke2022-10-151-0/+10
|
* GLTF imports & exports material texture filtersThe Tophat Demon2022-10-031-0/+11
|
* Make used extensions stored in GLTFStateAaron Franke2022-09-191-0/+12
| | | | This allows GLTFDocumentExtension classes to add to the used extensions array.
* Replace Array return types with TypedArray 3kobewi2022-08-241-34/+34
|
* Prevent AnimationPlayer from being added on GLTF import if the option is ↵Hakim2022-08-101-0/+11
| | | | unchecked. Fixes #63954
* GLTF: Move shared defines into a separate gltf_defines.h fileAaron Franke2022-07-241-34/+34
| | | | Also move GLTFDocument's template conversion functions into gltf_template_convert.h
* Improve gltf extension GLTFDocument api.K. S. Ernest (iFire) Lee2022-05-201-0/+11
|
* Replace most uses of Map by HashMapreduz2022-05-161-1/+1
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Discard images from gltf import for the animation library.K. S. Ernest (iFire) Lee2022-04-231-0/+8
| | | | This is an optimization.
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Merge pull request #45545 from abaire/relaxes_gltf_name_sanitizationRémi Verschelde2021-03-091-0/+11
|\ | | | | Relaxes node name sanitization in gltf documents.
| * Relaxes Node naming constraints in glTF documents to match the Editor.abaire2021-02-241-0/+11
| |
* | doc: Sync classref with current sourceRémi Verschelde2021-02-191-3/+3
|/ | | | And fix various bogus bindings following previous PRs.
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Add exporting glTF2.K. S. Ernest (iFire) Lee2020-12-221-0/+296
* Support KHR_texture_transform. * Support exporting glTF2 * Support exporting instanced scenes * Extract into a gltf state and gltf document * Add a tools menu for exporting gltf2