mirror of
https://github.com/Relintai/terraman.git
synced 2025-04-23 21:43:23 +02:00
Comment out unnecessary merging code in the PCM library.
This commit is contained in:
parent
0845d92e65
commit
c6cf44f2bb
@ -616,6 +616,7 @@ Ref<TexturePacker> TerrainLibraryMergerPCM::get_prop_packer() {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
void TerrainLibraryMergerPCM::refresh_rects() {
|
void TerrainLibraryMergerPCM::refresh_rects() {
|
||||||
|
/*
|
||||||
bool texture_added = false;
|
bool texture_added = false;
|
||||||
for (int i = 0; i < _terra_surfaces.size(); i++) {
|
for (int i = 0; i < _terra_surfaces.size(); i++) {
|
||||||
Ref<TerrainSurfaceMerger> surface = Ref<TerrainSurfaceMerger>(_terra_surfaces[i]);
|
Ref<TerrainSurfaceMerger> surface = Ref<TerrainSurfaceMerger>(_terra_surfaces[i]);
|
||||||
@ -679,11 +680,12 @@ void TerrainLibraryMergerPCM::refresh_rects() {
|
|||||||
surface->refresh_rects();
|
surface->refresh_rects();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
set_initialized(true);
|
set_initialized(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TerrainLibraryMergerPCM::_setup_material_albedo(const int material_index, const Ref<Texture> &texture) {
|
void TerrainLibraryMergerPCM::_setup_material_albedo(const int material_index, const Ref<Texture> &texture) {
|
||||||
|
/*
|
||||||
Ref<SpatialMaterial> mat;
|
Ref<SpatialMaterial> mat;
|
||||||
|
|
||||||
int count = 0;
|
int count = 0;
|
||||||
@ -750,6 +752,7 @@ void TerrainLibraryMergerPCM::_setup_material_albedo(const int material_index, c
|
|||||||
shmat->set_shader_param("texture_albedo", texture);
|
shmat->set_shader_param("texture_albedo", texture);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
TerrainLibraryMergerPCM::TerrainLibraryMergerPCM() {
|
TerrainLibraryMergerPCM::TerrainLibraryMergerPCM() {
|
||||||
@ -798,6 +801,7 @@ TerrainLibraryMergerPCM::~TerrainLibraryMergerPCM() {
|
|||||||
|
|
||||||
#ifdef PROPS_PRESENT
|
#ifdef PROPS_PRESENT
|
||||||
bool TerrainLibraryMergerPCM::process_prop_textures(Ref<PropData> prop) {
|
bool TerrainLibraryMergerPCM::process_prop_textures(Ref<PropData> prop) {
|
||||||
|
/*
|
||||||
if (!prop.is_valid()) {
|
if (!prop.is_valid()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -828,6 +832,9 @@ bool TerrainLibraryMergerPCM::process_prop_textures(Ref<PropData> prop) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return texture_added;
|
return texture_added;
|
||||||
|
*/
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user