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

Add rbx_xml SecurityCapabilites parsing, add to reflection #359

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -1686,10 +1686,6 @@ expression: decoded_viewed
String: ""
ExecuteWithStudioRun:
Bool: false
Is30FpsThrottleEnabled:
Bool: true
IsPhysicsEnvironmentalThrottled:
Bool: true
IsSleepAllowed:
Bool: true
NumberOfPlayers:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3770,18 +3770,6 @@ chunks:
prop_type: Bool
values:
- false
- Prop:
type_id: 44
prop_name: Is30FpsThrottleEnabled
prop_type: Bool
values:
- true
- Prop:
type_id: 44
prop_name: IsPhysicsEnvironmentalThrottled
prop_type: Bool
values:
- true
- Prop:
type_id: 44
prop_name: IsSleepAllowed
Expand Down
6 changes: 6 additions & 0 deletions rbx_dom_lua/src/allValues.json
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,12 @@
},
"ty": "Region3int16"
},
"SecurityCapabilities": {
"value": {
"SecurityCapabilities": 256
},
"ty": "SecurityCapabilities"
},
"String": {
"value": {
"String": "Hello, world!"
Expand Down
Loading