mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-05 14:47:22 +08:00
Order clips in ycd files alphabetically to improve readability for synched scene style dicts and general consistency
This commit is contained in:
parent
9d76f2c6c4
commit
8a30134c52
@ -138,7 +138,7 @@ namespace CodeWalker.Forms
|
||||
|
||||
if (ycd?.ClipMapEntries != null)
|
||||
{
|
||||
foreach (var cme in ycd.ClipMapEntries)
|
||||
foreach (var cme in ycd.ClipMapEntries.OrderBy(x => x.Clip?.ShortName ?? x.Hash.ToString())
|
||||
{
|
||||
if (cme != null)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user