Example of using GreasedLine with react-babylonjs #314
Unanswered
don-sitebionics
asked this question in
Q&A
Replies: 1 comment 1 reply
-
I never did actually try it out. It was just added to "API", since it was generated. What you have looks like it ought to work. Looking deeper into the babylon.js code - I see that I should also be supporting the builder likely (currently I only support MeshBuilder). I looked at that builder and it is simply doing a |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am able to get a GreasedLine to work with procedural BabylonJS but having trouble getting this to work declaratively with react. My best guess at it is...
<greasedLineMesh name="myGreasedLine" _options={{ points: [new Vector3(0, 0, 0), new Vector3(10, 10, 10), new Vector3(0, 0, 1)]}} />
...but this doesn't show up.
Anyone ever get GreasedLine to work with react?
Beta Was this translation helpful? Give feedback.
All reactions