Group By File Path does not work as expected

Issue #66 resolved
CS created an issue

I already set Group Keywork to /Stage* but it still does not group every scene as a new group

1.png 2.png

Comments (6)

  1. Hiroki Omae

    With given pattern "/Stage*", given all 3 scenes can match into the same group because * can represent all "1.unity" "2.unity" and "3.unity".

    If you wish to make group for each given scenes, please set "/Stage*.unity" as pattern which gives you "1","2", and "3" as group name.

  2. Hiroki Omae

    @optimisez It is giving you an error message that says your group name include "/". Your pattern "/Stage*.unity", * is matching Stage"s/Stage1" because your base folder also contains word "Stage". Please pay attention to the error message, and set the pattern to avoid it. In your case, set to "Stages/Stage*.unity" should do what you expected.

  3. Log in to comment