I'm using Unity/C# and I try to setup Rider File Layout XML to format code in specific way.
- What I want - is to put methods with certain names (e.g.
Awake()
,Start()
,Update()
etc.) in front of other methods. - The important part is that I want to move only methods without arguments.
Sorting by name partially works, but it also changes order of methods with parameters (e.g. Update(float dt)
).
Is there any way to filter methods with and without parameters using File Layout?