Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Override the default value of WorldPivotData to be null #450

Merged
merged 4 commits into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions patches/model.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ Change:
Scriptability: Custom
WorldPivotData:
Scriptability: Custom
DefaultValue:
OptionalCFrame: ~
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
source: rbx_binary/src/tests/util.rs
assertion_line: 33
expression: decoded_viewed
---
- referent: referent-0
Expand Down Expand Up @@ -1918,6 +1919,10 @@ expression: decoded_viewed
Bool: false
HistoryId:
UniqueId: "00000000000000000000000000000000"
Is30FpsThrottleEnabled:
Bool: true
IsPhysicsEnvironmentalThrottled:
Bool: true
IsSleepAllowed:
Bool: true
NumberOfPlayers:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
source: rbx_binary/src/tests/util.rs
assertion_line: 46
expression: text_roundtrip
---
num_types: 60
Expand Down Expand Up @@ -4400,6 +4401,18 @@ chunks:
prop_type: UniqueId
values:
- "00000000000000000000000000000000"
- Prop:
type_id: 58
prop_name: Is30FpsThrottleEnabled
prop_type: Bool
values:
- true
- Prop:
type_id: 58
prop_name: IsPhysicsEnvironmentalThrottled
prop_type: Bool
values:
- true
- Prop:
type_id: 58
prop_name: IsSleepAllowed
Expand Down
Loading