Skip to content
This repository has been archived by the owner on Jan 25, 2023. It is now read-only.

Commit

Permalink
Add constants for texture wrapping
Browse files Browse the repository at this point in the history
  • Loading branch information
bnjm committed Feb 21, 2018
1 parent 493efd7 commit 842407a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ios/RCTARKitManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,11 @@ - (NSDictionary *)constantsToExport
@"FillMode": @{
@"Fill": [@(SCNFillModeFill) stringValue],
@"Lines": [@(SCNFillModeLines) stringValue],
},
@"WrapMode": @{
@"Clamp": [@(SCNWrapModeClamp) stringValue],
@"Repeat": [@(SCNWrapModeRepeat) stringValue],
@"Mirror": [@(SCNWrapModeMirror) stringValue],
}
};
}
Expand Down

0 comments on commit 842407a

Please sign in to comment.