Nathan
Nathan
Nice to know this is working... I think it also needs to be public, so ``` C# [Export] public float speed = 200f; ```
Thanks for asking. Since we're explicitly placing an attribute, I think it would be good to do it for private fields too. You may want to change these fields per...
As an example, in Unity they automatically export all public variables, but you can place an attribute in order to expose a private field to the editor. Just so I...
I could be wrong, but you may need to restart before that'll work. Also, make sure you're on commit 5195935 as the next merged commit breaks the mono build.
I think that's reasonable :)
I bet neikeq is going to want an example project to reproduce this. Also, did you try the equivelant code using GDScript? I find myself doing this because: A) If...
I had this issue too (using the official Docker container). My workaround is just that I set the settings to what I needed, made a backup of the file, and...
I like it and agree that QA and unit testing are different. However, while different things they are still very related. I've heard it this way: The QA engineer does...
Let me amend my previous statement by saying that certain types of automated tests can take a *very* long time to execute since they may involve opening large projects or...
> I'm not a QA guy myself although I've interacted with them plenty in my career. I'm putting together what I imagine a QA test/suite might look like. I could...