mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-03 09:29:38 +01:00
Fix exporting big templates
(cherry picked from commit 86fa3ba56015b0fb6f282277b37c211fe803c6f9)
This commit is contained in:
parent
309d6ea5bc
commit
5d6b2de1f3
@ -301,7 +301,7 @@ Error DirAccess::copy(String p_from, String p_to, int p_chmod_flags) {
|
||||
const size_t copy_buffer_limit = 65536; // 64 KB
|
||||
|
||||
fsrc->seek_end(0);
|
||||
int size = fsrc->get_position();
|
||||
uint64_t size = fsrc->get_position();
|
||||
fsrc->seek(0);
|
||||
err = OK;
|
||||
size_t buffer_size = MIN(size * sizeof(uint8_t), copy_buffer_limit);
|
||||
|
@ -167,8 +167,10 @@ static bool _collect_inheritance_chain(const Ref<SceneState> &p_state, const Nod
|
||||
state = state->get_base_scene_state();
|
||||
}
|
||||
|
||||
for (int i = inheritance_states.size() - 1; i >= 0; --i) {
|
||||
r_states_stack.push_back(inheritance_states[i]);
|
||||
if (inheritance_states.size() > 0) {
|
||||
for (int i = inheritance_states.size() - 1; i >= 0; --i) {
|
||||
r_states_stack.push_back(inheritance_states[i]);
|
||||
}
|
||||
}
|
||||
|
||||
return found;
|
||||
@ -212,10 +214,12 @@ Vector<SceneState::PackState> PropertyUtils::get_node_states_stack(const Node *p
|
||||
{
|
||||
states_stack_ret.resize(states_stack.size());
|
||||
_FastPackState *ps = states_stack.ptr();
|
||||
for (int i = states_stack.size() - 1; i >= 0; --i) {
|
||||
states_stack_ret.write[i].state.reference_ptr(ps->state);
|
||||
states_stack_ret.write[i].node = ps->node;
|
||||
++ps;
|
||||
if (states_stack.size() > 0) {
|
||||
for (int i = states_stack.size() - 1; i >= 0; --i) {
|
||||
states_stack_ret.write[i].state.reference_ptr(ps->state);
|
||||
states_stack_ret.write[i].node = ps->node;
|
||||
++ps;
|
||||
}
|
||||
}
|
||||
}
|
||||
return states_stack_ret;
|
||||
|
Loading…
Reference in New Issue
Block a user