1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Expose ResourceImportMetadata::set_source_md5 for script

This commit is contained in:
Geequlim
2016-05-31 15:06:24 +08:00
parent b8d31c5eb5
commit 2bbedd35dd
2 changed files with 9 additions and 5 deletions

View File

@@ -133,6 +133,7 @@ void ResourceImportMetadata::_bind_methods() {
ObjectTypeDB::bind_method(_MD("add_source","path","md5"),&ResourceImportMetadata::add_source, ""); ObjectTypeDB::bind_method(_MD("add_source","path","md5"),&ResourceImportMetadata::add_source, "");
ObjectTypeDB::bind_method(_MD("get_source_path","idx"),&ResourceImportMetadata::get_source_path); ObjectTypeDB::bind_method(_MD("get_source_path","idx"),&ResourceImportMetadata::get_source_path);
ObjectTypeDB::bind_method(_MD("get_source_md5","idx"),&ResourceImportMetadata::get_source_md5); ObjectTypeDB::bind_method(_MD("get_source_md5","idx"),&ResourceImportMetadata::get_source_md5);
ObjectTypeDB::bind_method(_MD("set_source_md5","idx", "md5"),&ResourceImportMetadata::set_source_md5);
ObjectTypeDB::bind_method(_MD("remove_source","idx"),&ResourceImportMetadata::remove_source); ObjectTypeDB::bind_method(_MD("remove_source","idx"),&ResourceImportMetadata::remove_source);
ObjectTypeDB::bind_method(_MD("get_source_count"),&ResourceImportMetadata::get_source_count); ObjectTypeDB::bind_method(_MD("get_source_count"),&ResourceImportMetadata::get_source_count);
ObjectTypeDB::bind_method(_MD("set_option","key","value"),&ResourceImportMetadata::set_option); ObjectTypeDB::bind_method(_MD("set_option","key","value"),&ResourceImportMetadata::set_option);

View File

@@ -56,17 +56,21 @@ func import(path,metadata):
if (use_red_anyway): if (use_red_anyway):
color=Color8(255,0,0) color=Color8(255,0,0)
material.set_parameter(FixedMaterial.PARAM_DIFFUSE,color) material.set_parameter(FixedMaterial.PARAM_DIFFUSE,color)
# Make sure import metadata links to this plugin # Make sure import metadata links to this plugin
metadata.set_editor("silly_material") metadata.set_editor("silly_material")
# Update the md5 value of the source file
metadata.set_source_md5(0, f.get_md5(source))
# Update the import metadata # Update the import metadata
material.set_import_metadata(metadata) material.set_import_metadata(metadata)
# Save # Save
err = ResourceSaver.save(path,material) err = ResourceSaver.save(path,material)
@@ -78,4 +82,3 @@ func config(base_control):
dialog = preload("res://addons/custom_import_plugin/material_dialog.tscn").instance() dialog = preload("res://addons/custom_import_plugin/material_dialog.tscn").instance()
base_control.add_child(dialog) base_control.add_child(dialog)