godot/core/io
Juan Linietsky 97a3a66220 Improved 3D Scene Importer
* Added option for importers to show an Advanced settings dialog
* Created advanced settings dialog for Scene Importer
* Cleaned up importers (remove many old/unused options)
* Added the ability to customize every node, material, mesh and animation individually
* Saving to animations and meshes to files is now a manual process, making it more predictable
* Added the ability for materials to be replaced by external files (or to be made external, up to you).
* When doubleclicking an impoted scene in the filesystem dock, it automatically shows the import settings instead of asking to open it.

WARNING: Lightmap UV unwrap is not working, it needs to be re-made.
2021-03-22 12:16:40 -03:00
..
compression.cpp Fixes small typos and grammar correction 2021-03-12 19:05:16 +05:30
compression.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
config_file.cpp Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
config_file.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
dtls_server.cpp Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
dtls_server.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
file_access_compressed.cpp Allow nullptr with zero length in FileAccess get_buffer 2021-03-16 22:55:11 +01:00
file_access_compressed.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
file_access_encrypted.cpp Allow nullptr with zero length in FileAccess get_buffer 2021-03-16 22:55:11 +01:00
file_access_encrypted.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
file_access_memory.cpp Allow nullptr with zero length in FileAccess get_buffer 2021-03-16 22:55:11 +01:00
file_access_memory.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
file_access_network.cpp Allow nullptr with zero length in FileAccess get_buffer 2021-03-16 22:55:11 +01:00
file_access_network.h Modernize Thread 2021-01-29 12:02:13 +01:00
file_access_pack.cpp Allow nullptr with zero length in FileAccess get_buffer 2021-03-16 22:55:11 +01:00
file_access_pack.h Merge pull request #38844 from hbina/patch-5 2021-02-25 17:49:47 +01:00
file_access_zip.cpp Allow nullptr with zero length in FileAccess get_buffer 2021-03-16 22:55:11 +01:00
file_access_zip.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
http_client.cpp Fix crash on HTTPClient::poll method 2021-03-03 21:00:30 +00:00
http_client.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
image.cpp Add ability to change Icon Saturation 2021-02-12 12:16:37 -03:00
image.h Add ability to change Icon Saturation 2021-02-12 12:16:37 -03:00
image_loader.cpp Improve resource load cache 2021-02-11 15:44:28 -03:00
image_loader.h Improve resource load cache 2021-02-11 15:44:28 -03:00
ip.cpp Modernize atomics 2021-02-18 17:12:46 +01:00
ip.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
ip_address.cpp Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
ip_address.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
json.cpp JSON parser: add UTF-16 surrogate pairs support. 2021-03-01 13:23:12 +02:00
json.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
logger.cpp Logger: Cache 'flush_stdout_on_print' to improve performance, and works before ProjectSettings starts. 2021-02-28 19:36:10 -03:00
logger.h Logger: Cache 'flush_stdout_on_print' to improve performance, and works before ProjectSettings starts. 2021-02-28 19:36:10 -03:00
marshalls.cpp Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
marshalls.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
multiplayer_api.cpp Fixes small typos and grammar correction 2021-03-12 19:05:16 +05:30
multiplayer_api.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
net_socket.cpp Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
net_socket.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
networked_multiplayer_peer.cpp Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
networked_multiplayer_peer.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
packed_data_container.cpp Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
packed_data_container.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
packet_peer.cpp Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
packet_peer.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
packet_peer_dtls.cpp Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
packet_peer_dtls.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
packet_peer_udp.cpp Fixes small typos and grammar correction 2021-03-12 19:05:16 +05:30
packet_peer_udp.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
pck_packer.cpp Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
pck_packer.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
resource.cpp Improve resource load cache 2021-02-11 15:44:28 -03:00
resource.h Improve resource load cache 2021-02-11 15:44:28 -03:00
resource_format_binary.cpp Fixes small typos and grammar correction 2021-03-12 19:05:16 +05:30
resource_format_binary.h Improve resource load cache 2021-02-11 15:44:28 -03:00
resource_importer.cpp Added Import Defaults Editor in Project Settings 2021-02-23 14:18:02 -03:00
resource_importer.h Improved 3D Scene Importer 2021-03-22 12:16:40 -03:00
resource_loader.cpp Fixes small typos and grammar correction 2021-03-12 19:05:16 +05:30
resource_loader.h doc: Sync classref with current source 2021-02-19 14:39:14 +01:00
resource_saver.cpp Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
resource_saver.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
SCsub SCons: Format buildsystem files with psf/black 2020-03-30 09:05:53 +02:00
stream_peer.cpp Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
stream_peer.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
stream_peer_ssl.cpp Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
stream_peer_ssl.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
stream_peer_tcp.cpp Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
stream_peer_tcp.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
tcp_server.cpp Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
tcp_server.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
translation_loader_po.cpp Fixes small typos and grammar correction 2021-03-12 19:05:16 +05:30
translation_loader_po.h Improve resource load cache 2021-02-11 15:44:28 -03:00
udp_server.cpp Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
udp_server.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
xml_parser.cpp Fixes small typos and grammar correction 2021-03-12 19:05:16 +05:30
xml_parser.h Add support for numeric XML entities to XMLParser 2021-02-14 11:00:25 -06:00
zip_io.cpp Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
zip_io.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00