Matt Ellis
Matt Ellis
@SugoiDev any suggestions you have, throw them over. I think Rider can offer useful features once you've disabled domain reloading, but doesn't help with discoverability.
Yes, this and #2319 are duplicates. Fixed in #2334, released as part of 2022.2
The problem is that the Unity plugin requires ReSharper C++ for language support for shaders (HLSL is treated as a dialect of C/C++). If ReSharper is installed without C++ support,...
Does this cause an issue? The key thing is that the guid is created, because that allows assets to be referenced in scenes, etc. and if that changes, those references...
Why are you reading the meta file to see if another path is a directory? Why not just call `Directory.Exists()`?
Or perhaps have a "got it" tooltip to point it out when you hit a breakpoint - it shows the console logs while Unity itself is unresponsive (because it's at...
In the meantime, it's possible to do this by hand. 1. Edit the XML. It's actually read as XAML, so normal XAML rules apply. 2. XML encode the text and...
Should definitely highlight non-default constructor, because this can cause field initialisers to not run - the compiler rewrites these to be part of the constructor, and Unity will only invoke...
This really requires [RIDER-8339](https://youtrack.jetbrains.com/issue/RIDER-8339) to be implemented
There is an example in [this comment](https://github.com/JetBrains/resharper-unity/pull/768#issuecomment-432999046) that provides a manual override to allow different naming conventions for public/private. The linked RIDER-8339 issue is the correct fix for this to...