summaryrefslogtreecommitdiff
path: root/editor/import
AgeCommit message (Collapse)Author
2020-01-10Use cycle and loop hint flags in glTF2.K. S. Ernest (iFire) Lee
2020-01-02Support GLTF2 alpha scissors.K. S. Ernest (iFire) Lee
2020-01-02Merge pull request #34618 from qarmin/vector_please_dont_crashRémi Verschelde
Don't use constant reference in Vector push_back, insert and append_array
2020-01-01Update copyright statements to 2020Rémi Verschelde
Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.
2019-12-26Don't use constant reference in Vector push_back, insert and append_arrayRafał Mikrut
2019-12-24Fix Hard Crash on glTF Color Accessor ImportMarios Staikopoulos
2019-12-10Removed unused variables, add some constants numbersRafał Mikrut
2019-11-27Bugfix: Sanitize glTF importer Animation Names and do not set bone_poseMarios Staikopoulos
2019-11-2233714 glTF2 handle undefined load-time scene.K. S. Ernest (iFire) Lee
2019-11-22Fix typos with codespellRémi Verschelde
Using codespell 1.16.0. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang curvelinear dof doubleclick leapyear lod merchantibility nd numer ois ony que seeked synching te uint unselect webp EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ```
2019-11-21Merge pull request #33794 from nekomatata/gltf-morph-shapes-crash2Rémi Verschelde
Error instead of crash in gltf import with more than one morph target
2019-11-21Error instead of crash in gltf import with more than one morph targetPouleyKetchoupp
Redone from PR #33782 to fix the crash without adding compatibility with Blender 2.8 Helps with #16124, while Blender 2.81 has the proper export fix.
2019-11-2133756 gltf2 importer should use zfarK. S. Ernest (iFire) Lee
2019-11-2033714 If the gltf2 asset has no scene, it is corrupt.K. S. Ernest (iFire) Lee
2019-10-14Small fixes to redundand code, copy paste bugsqarmin
2019-10-10Remove dependency on the editor directory being in the build's include path.Marcel Admiraal
- Add or remove the necessary subdirectorires to the includes to remove dependency on the editor directory being in the build's include path. - Ensure includes in modified files conform to style guideline. - Remove editor from the build include path.
2019-09-28Restore import animation storage checkbox behaviorhomer666
2019-09-25Fix import hints being ignored by glTF importergladmin
This fixes a regression introduced in commit 72d2468 due to hyphens being removed from nodes names.
2019-09-25Merge pull request #32051 from qarmin/some_error_explanationRémi Verschelde
Added some obvious errors explanations
2019-09-25Added some obvious errors explanationsqarmin
2019-09-25Merge pull request #32306 from hbina/unused_variableRémi Verschelde
Fixed incorrect usage of variables in querying values.
2019-09-24glTF: Fixed mistake with root node calculation in skin_verifyMarios Staikopoulos
Was not actually grabbing the computed roots for comparison, but instead was grabbing the disjoint_set representatives.
2019-09-24Fixed incorrect use of variablesHanif Bin Ariffin
The previous committer mistakenly used the wrong variable to query some values. This commit simply changes it so that it queries the right Dict.
2019-09-23Merge pull request #32275 from godotengine/skin_supportRémi Verschelde
Added skin support and simplified APIs to override bone position + glTF 2.0 import fixes
2019-09-22GLTF: Fixed some issues with skin groups joining incorrectly and removed ↵Marios Staikopoulos
unused code - Skin groups now merge more cleanly together - Skins whose highest nodes are siblings of another skin now get merged also - Skin nodes who have children of another skin now also fuse together - Removed the re-rooting of IBM code, as it is no longer needed with the Skin system
2019-09-22Changed some code found by Clang Tidy and Coverityqarmin
2019-09-21More GLTF FixesMarios Staikopoulos
1: Depth draw mode set for transparent materials (iFire) 2: Skeletons - Bone names now unique and seperate from scene names - Due to mixture of fake joints and joints, new bone sanitizing for names added - Fixed an issue where some disjoint skins were not being joined due to a logic error - Deterministic and Depth-first bone creation order 3: Skins - Removed duplicate skins when possible 4: Animations - Fixed invalid morph target names
2019-09-21GLTF Importer - Add more Index types and const-ed up the codeMarios Staikopoulos
2019-09-20GLTF2 Import Fixes - Skin(s) to Skeleton - Skin SupportMarios Staikopoulos
2019-09-18Added skin support and simplified APIs to override bone position.Juan Linietsky
2019-09-03Add CSV import without translation.willnationsdev
2019-08-30Disabled trim and normalize as default for wav importRasmus Ketelsen
2019-08-27Added the ability to import scene resources as .tres filesRasmus Ketelsen
2019-08-19Move CryptoCore to it's own folder.Fabio Alessandrelli
Crypto classes will be placed in core/crypto.
2019-08-17Replace last occurrences of 'ERR_EXPLAIN' with 'ERR_FAIL_*_MSG'Rémi Verschelde
The last remaining ERR_EXPLAIN call is in FreeType code and makes sense as is (conditionally defines the error message). There are a few ERR_EXPLAINC calls for C-strings where String is not included which can stay as is to avoid adding additional _MSGC macros just for that. Part of #31244.
2019-08-17Replace 'ERR_EXPLAIN' with 'ERR_FAIL_*_MSG' in 'core/' and 'editor/'Braden Bodily
Condensed some if and ERR statements. Added dots to end of error messages Couldn't figure out EXPLAINC. These files gave me trouble: core/error_macros.h, core/io/file_access_buffered_fa.h (where is it?), core/os/memory.cpp, drivers/png/png_driver_common.cpp, drivers/xaudio2/audio_driver_xaudio2.cpp (where is it?)
2019-07-27Bugfix in GLTF import: Flipping boolean check. Reindexing should _NOT_ ↵Joseph Catrambone
happen when blend shapes are present.
2019-07-23Merge pull request #30716 from qarmin/fixed_static_analiser_codeRémi Verschelde
Fix some code found by Coverity Scan and PVS Studio
2019-07-23Fix some code found by Coverity Scan and PVS Studioqarmin
2019-07-22Revert "Tweak SpatialMaterial's default metallic and roughness texture channels"Rémi Verschelde
2019-07-20Changed some code showed in LGTM and Coverageqarmin
2019-07-07Hide "Max Rate Hz" if "Max Rate" is unchecked when importing WAV sampleHugo Locurcio
2019-07-02CryptoCore class to access to base crypto utils.Fabio Alessandrelli
Godot core needs MD5/SHA256/AES/Base64 which used to be provided by separate libraries. Since we bundle mbedtls in most cases, and we can easily only include the needed sources if we so desire, let's use it. To simplify library changes in the future, and better isolate header dependencies all functions have been wrapped around inside a class in `core/math/crypto_base.h`. If the mbedtls module is disabled, we only bundle the needed source files independently of the `builtin_mbedtls` option. If the module is enabled, the `builtin_mbedtls` option works as usual. Also remove some unused headers from StreamPeerMbedTLS which were causing build issues.
2019-06-26Some code changed with Clang-Tidyqarmin
2019-06-20Merge pull request #29283 from qarmin/fix_some_always_same_valuesRémi Verschelde
Remove always true/false values
2019-06-20Fix always true/false valuesqarmin
2019-06-20Merge pull request #26205 from Calinou/spatialmaterial-use-packed-channelsRémi Verschelde
Tweak SpatialMaterial's default metallic and roughness texture channels
2019-06-19Made use of semicolons more consitent, fixed formattingJohnJLight
2019-06-15glTF: Fix import of animations with INTERPOLATION_LINEARRémi Verschelde
Bug found thanks to GCC 8's -Wduplicated-branches. Slight refactor for readability.
2019-06-11Merge pull request #29680 from akien-mga/fix-headersRémi Verschelde
Add missing license headers