Skip to content

Commit

Permalink
Add enum cases
Browse files Browse the repository at this point in the history
  • Loading branch information
bnjm committed Mar 22, 2018
1 parent f352352 commit cf030e5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ios/RCTARKitManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,12 @@ - (NSDictionary *)constantsToExport
@"Multiply": [@(SCNBlendModeMultiply) stringValue],
@"Screen": [@(SCNBlendModeScreen) stringValue],
@"Replace": [@(SCNBlendModeReplace) stringValue],

},
@"TransparencyMode": @{
@"Default": [@(SCNTransparencyModeAOne) stringValue],
@"RGBZero": [@(SCNTransparencyModeRGBZero) stringValue],
@"SingleLayer": [@(SCNTransparencyModeSingleLayer) stringValue],
@"DualLayer": [@(SCNTransparencyModeDualLayer) stringValue],
},
@"ChamferMode": @{
@"Both": [@(SCNChamferModeBoth) stringValue],
Expand Down

0 comments on commit cf030e5

Please sign in to comment.