1.0Beta docs? #234
-
Hi, I would like to try out your 1.0 beta, is the usage the same as 0.x ? |
Beta Was this translation helpful? Give feedback.
Answered by
michalochman
Aug 16, 2021
Replies: 2 comments 2 replies
-
Hi @linonetwo, the usage is the same in general with an exception of only two small differences:
1.
|
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
michalochman
-
For 1.0.0 notes please follow #272 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @linonetwo, the usage is the same in general with an exception of only two small differences:
ref
with<Stage />
component.react-pixi-fiber
withanimated
orreact-spring
.1.
ref
with<Stage />
If you wanted to manually access
PIXI.Application
with reference to Stage, then you would do:[email protected]
[email protected]
function SomePixiApp() { const stageRef = useRef<typeof Stage | null>(null) useEffect(() => { - const app …