Skip to content

Commit

Permalink
fix: uncooked (redkit) CStorySceneLine vars
Browse files Browse the repository at this point in the history
  • Loading branch information
nikich340 committed Dec 12, 2024
1 parent 68dfc83 commit 255c535
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions WolvenKit.CR2W/Types/W3/RTTIConvert/CStorySceneLine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,13 @@ public class CStorySceneLine : CAbstractStorySceneLine
[Ordinal(6)] [RED("isBackgroundLine")] public CBool IsBackgroundLine { get; set;}

[Ordinal(7)] [RED("alternativeUI")] public CBool AlternativeUI { get; set;}
#if NGE_VERSION
[Ordinal(8)] [RED("isSilent")] public CBool IsSilent { get; set; }
#endif

[Ordinal(8)] [RED("isSilent")] public CBool IsSilent { get; set; }

[Ordinal(9)] [RED("overriddenLipsyncFilePath")] public CString OverriddenLipsyncFilePath { get; set; }

[Ordinal(10)] [RED("overriddenAudioFilePath")] public CString OverriddenAudioFilePath { get; set; }


public CStorySceneLine(CR2WFile cr2w, CVariable parent, string name) : base(cr2w, parent, name){ }

Expand Down

0 comments on commit 255c535

Please sign in to comment.