I am so new sorry about this question how to put plane behinf the camera view ?
transform feature moves item at 2d platform not 3d any solution to this
Thank you
I am so new sorry about this question how to put plane behinf the camera view ?
transform feature moves item at 2d platform not 3d any solution to this
Thank you
By setting a positive 3rd argument to the translation you can get stuff to show up behind the camera. All objects start out at 0, 0, 0
coordinates (x, y, z axis). You can read more about this in the official docs for 3D Coordinates and Transforms.
<Text style={{
backgroundColor: '#777879',
fontSize: 0.8,
layoutOrigin: [0.5, 0.5],
transform: [{translate: [0, 0, 1]}],
}}>This is a test!</Text>