Jury Schon

Results 19 comments of Jury Schon

目前会,直到作者 close 了这个 issue

I really appreciate your work @Jvaeyhcd , this lib is really handy and useful. But this bug has already affected over 1k of my users. Can you provide a timeline...

The parser is mismatched and thats why you get `incorrect header check` error. Simply replace `tgz` with `zip` will resolve the issue.

An error related with it goes like this: ``` [ERROR] [2021/7/31上午1:37:20] Uncaught Exception [ERROR] [2021/7/31上午1:37:20] RangeError [ERR_OUT_OF_RANGE]: The value of "fd" is out of range. It must be >= 0...

The only workaround for me is to create a new typed array manually: ```gdscript var recipes = craft_recipes.filter( func(recipe: RecipeItem): # do something return true ).map( func(recipe: RecipeItem) -> RecipeItem:...

> @portwatcher You can use Array.assign(), which should be faster. Yeah but I only have like 20 recipes and `Array.assign` is not visibly straightforward to me

> How do you mean? It's just: > > ```gdscript > var recipes = craft_recipes.filter( > func(recipe: RecipeItem): > # do something > return true > ).map( > func(recipe: RecipeItem)...

My case: I want to spawn a small block after I've replaced the block with air (like you dig a block in minecraft). My steps are: 1. do_sphere, 3. instance...