Mats Gisselson
Mats Gisselson
Hi! The attached editor log file is zero bytes. Could you try uploading the logs again?
I think it makes sense for projects to control the Build Server setting from a file committed into the project. But all the other preferences are user-preferences in my mind....
Ohh, nice find about the potential slowdown during cache invalidation! That's surprising. I'll look into it! We definitely do not make the cache-invalidation situation worse. Regarding the approach taken, I...
I was not able to reproduce as drastic of a slowdown as you were seeing. Perhaps there was still some background processing going on when you ran the test on...
Here's the code I used to perform the measurements in isolation without loading up the editor: ```clj (ns scratch (:require [criterium.core :as criterium] [dynamo.graph :as g] [editor.defold-project :as project] [editor.editor-extensions...
I believe the "Cell 1, 1" string is produced here: https://github.com/defold/defold/blob/dev/editor/src/clj/editor/tile_map.clj#L1144 You should be able to calculate the tile ID using the `tile-dimensions` that are also available there and add...
I can't reproduce this. I'm able to copy and paste text from this bug report into the Defold code editor while editing a `test.vp` file. Are you sure you had...
Somewhat related: https://github.com/defold/defold/issues/7536
Yeah, there are a couple of ways we could deal with this scenario, but it is not as simple as just enabling the `os` functions. @britzl maybe add this to...
We could pass the delta-time from the `ui/->timer` to the `tick-fn` all the way down to `scene/update-updatables` and use a non-deterministic timestep.