我用下巴挡刺拳 godot 1 RT,小弟纯纯萌新一个,刚开始入门也没指望能做什么大作,现在正在照着自搜的教程做一个仿雷电的小飞机游戏。 那么一开始是要设置子弹的,于是小弟就按照教程所述,新建了一个全局变量来获取子弹实例,代码如下: 如上图,教程思路倒是很好,创建一个方法把参数全获取了。 然后后续代码被写进...
Godot version 4.0 RC 3 System information Macbook m1 Issue description If I normally use: Skeleton2D.new() if works. If I use: @export_group("Skeleton2D") ... Skeleton2D.new() I get error: Invalid call. Nonexistent function 'new' in base...
I was trying to sync the scene tree's paused state with an rpc call, so I wrote this get_tree().set_pause.rpc() which throws the error in the title. got the same error when doing timer.start.rpc() (where timer is a reference to a timer node in the tree) Steps to reproduce si...
mrp-resource-loader.zip Append 7 times on 37 call of load_threaded_request() E 0:00:01:585 ResourceLoaderManager.gd:98 @ _process(): Invalid Task ID <C++ Error> Method/function failed. Returning: ERR_INVALID_PARAMETER <C++ Source> core\object\worker_thread_pool.cpp:369 @ WorkerThreadPoo...
Write simple function, supposed to receive signal with path to sender as argument, for example func_on_receive_signal(signal_sender:NodePath):varsender=get_node(signal_sender)assert(sender==$Button) Create any child node, for exampleButton, select it ...
Tested versions Reproducible in: v4.3.stable.mono.official [77dcf97] System information Godot v4.3.stable.mono - Windows 10.0.19045 - Vulkan (Forward+) - dedicated NVIDIA GeForce GTX 1660 (NVIDIA; 32.0.15.6094) - AMD Ryzen 5 5600G with R...
Fixes thread crash if incorrect number of arguments is used in the callback, error message was using dereferenced t (and also wrong formatting).
godot-cpp/src/core/class_db.cpp Line 370 in cd61a9b class_register_order.erase((i + 1).base()); This call to std::vector::erase invalidates any iterator (including i) and the result can be random because it's Undefiend Behavior. We dont know if the vector will or not re-...