I have a scene with a start calculation button and when press it will loop x number of times to perform calculation.
Example code,
for i in total:
calc()
Whenever total exceed 25 there will be error of Message queue out of memory.
Below is the detail from error log,
Failed method: Label:_update_callback target ID: 363597
TOTAL BYTES: 4194288
NULL count: 0
CALL _update_callback: 87381
CALL _sort_children: 4
CALL _update_minimum_size: 87377
ERROR: Message queue out of memory. Try increasing 'memory/limits/message_queue/max_size_kb' in project settings.
at: push_call (core/message_queue.cpp:54) - Method failed. Returning: ERR_OUT_OF_MEMORY
Looks like the error occurs at Label:_update_callback and I wonder why?