Alexis Leclerc

Results 23 comments of Alexis Leclerc

I had the issue, and it can be a "cache issue" try "Ctrl+F5" to empty it

I have the same issue, I'm on Unity2022.3.11 on **Linux** and using Tiled v2.1.1. EDIT : this is a Linux problem, the zip is unusable on Linux the files are...

I solved the problem with this script to rename all files (and it works on Linux) : ```sh #!/bin/bash DIR="/path/to/SuperTiled2Unity" find "$DIR" -type f | while read -r file; do...

> For Linux (tested with Ubuntu 22.04), you need the following dependencies for asdf-python: `libsqlite3-dev libbz2-dev liblzma-dev libffi-dev` > > I think some form of `tkinter` or `tcl` is also...

I'm really interested in this issue, and in my opinion this is one of the most important one

It's really linked to the project view, being able to have a big picture. Projects should be sortable, and filtered by : - name - status - start/end date Currently...

Same problem here. A binding on the `ProjectContext` is not overriden by the `StaticContext` (there is a `SceneContext` on the scene) Extenject version : 9.1.0 Unity version : 2019.2.20.f1 FYI...

`StaticContext` is used in last resort if no other "closer" context contains the expected binding. And indeed **the documentation does not say that it will override other bindings** (_StaticContext is...

How can you find you object before calling `yield return LoadScene('bar')` ? When this return everything is binded and it's too late :/ I ended up resolving my object and...

I was thinking of a slightly different idea ; When `strict: true` offer the possibility to the users to "override" the default behavior enforced by the strict mode Example :...