Yongda Fan
Yongda Fan
I've read through serval related discussions about this, including https://github.com/FabricMC/fabric-loader/pull/192 https://github.com/FabricMC/fabric-loader/issues/445 https://github.com/FabricMC/fabric-loader/issues/175 https://github.com/FabricMC/fabric-loader/issues/223 Since this one has been discussed for a long time but never made it real, I would...
I am thinking to add an entry point before mixin/aw bootstrap happens (i.e. immediately after loading happens), which can give more flexibility for the mod developer. I guess we can...
### Build tool Vite ### Where do you see the problem? - [X] In the browser - [ ] In the terminal ### Describe the bug if we specify the...
Similar to the `shiftOrigin(Vec3)` function provided in Phyx. https://docs.nvidia.com/gameworks/content/gameworkslibrary/physx/guide/Manual/OriginShift.html This is useful when developing a large world game where the float precision issue could exist. Compared to manually updating all...
i encoutner error ``` ValueError: 'DHNkdRfXoAEp2VD.0.jpg' is not in the subpath of 'C:\\Users\\*\\GitHub\\notion4ever\\_site' OR one path is relative and the other is absolute. ``` where DHNkdRfXoAEp2VD.0.jpg is the icon for...
# Objective - Allow to configure `on_thread_spawn` and `on_thread_destroy` when using `TaskPoolPlugin` of bevy. ## Solution - In `TaskPoolThreadAssignmentPolicy`, two options `on_thread_spawn` and `on_thread_destroy` are added, which will be passed...
Here is my computer Ryzen 5950X B550I AORUS PRO AX Nvidia 1080 Ti Windows 11 Here is the error message. I've updated config.plist as suggested by one of the notes...
**Describe the bug** A clear and concise description of what the bug is. Encounter the error Collected errors: * pkg_hash_check_unresolved: cannot find dependency curl for luci-theme-argon * pkg_hash_fetch_best_installation_candidate: Packages for...
When we have unique index in the key, we cannot update the value. It will give duplicate value error. ```rust struct Datum { key: String, value: String } let database...
也是使用滑动窗口方法. ```Python class Solution: def minSubArrayLen(self, target: int, nums: List[int]) -> int: i = 0 j = 0 s = 0 r = len(nums) + 1 # a sufficient large...