-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Files/UI] Many more controllers & components
- Loading branch information
Showing
165 changed files
with
4,573 additions
and
520 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using GBFRDataTools.Files.UI; | ||
using GBFRDataTools.Hashing; | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace GBFRDataTools.Files.UI.Components; | ||
|
||
// ui::component::AnimationEvent | ||
public class AnimationEvent // : Component | ||
{ | ||
public static List<UIPropertyTypeDef> GetAllProperties() | ||
{ | ||
var list = new List<UIPropertyTypeDef>(); | ||
list.AddRange(Component.Properties); | ||
return list; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
using GBFRDataTools.Files.UI; | ||
using GBFRDataTools.Hashing; | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace GBFRDataTools.Files.UI.Components; | ||
|
||
// ui::component::ChangeSkillDispMode | ||
public class ChangeSkillDispMode // : Component | ||
{ | ||
public static List<UIPropertyTypeDef> Properties { get; set; } = new() | ||
{ | ||
new("Animator", FieldType.ObjectRef), | ||
new("SoundContainer", FieldType.ObjectRef), | ||
new(0x99CA5014, FieldType.ObjectRef), | ||
new(0xC98629F2, FieldType.ObjectRef), | ||
new("ChangeSkillDispMode", FieldType.ObjectRef), | ||
}; | ||
|
||
public static List<UIPropertyTypeDef> GetAllProperties() | ||
{ | ||
var list = new List<UIPropertyTypeDef>(); | ||
list.AddRange(Component.Properties); | ||
list.AddRange(Properties); | ||
return list; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.