gpt4 book ai didi

javascript - 在 react-native-gl-model-view 中使用多个 3d 对象时应用程序崩溃

转载 作者:行者123 更新时间:2023-12-03 17:22:16 25 4
gpt4 key购买 nike

我想使用 react-native-gl-model-view 中的 2 个“3d 对象模型”同时在一个屏幕上。当我使用单个 3d 对象时,它工作正常,但一旦我使用两个或两个以上,每个 3d 对象模型开始闪烁,几秒钟后应用程序崩溃。
这是它如何处理多个 3d 对象
enter image description here
这是代码:

import React, {Component} from 'react';
import {StyleSheet, View, Animated} from 'react-native';

import ModelView from 'react-native-gl-model-view';
const AnimatedModelView = Animated.createAnimatedComponent(ModelView);

export default class Multiple extends Component {
constructor() {
super();
this.state = {
rotateZ: new Animated.Value(0),
};
}

componentDidMount() {
this.animate(0);
}

animate(iteration) {
Animated.timing(this.state.rotateZ, {
toValue: ++iteration * 360,
useNativeDriver: true,
duration: 5000,
}).start(this.animate.bind(this, iteration++));
}

renderModel() {
return (
<AnimatedModelView
model={{
uri: 'demon.obj',
}}
texture={{
uri: 'demon.png',
}}
tint={{r: 1.0, g: 1.0, b: 1.0, a: 1.0}}
animate
scale={0.01}
translateZ={-2.5}
rotateX={270}
rotateZ={Animated.add(this.state.rotateZ, Math.random() * 360)}
style={styles.model}
/>
);
}

render() {
return (
<View style={styles.container}>
<View style={styles.row}>
{this.renderModel()}
{this.renderModel()}
</View>
</View>
);
}
}

const styles = StyleSheet.create({
container: {
flex: 1,
},
row: {
flex: 1,
flexDirection: 'row',
},
model: {
flex: 1,
backgroundColor: 'transparent',
},
});
注 1:要在 Android 上加载模型,您需要将模型放在 android/app/src/main/assets文件夹。如果它还不存在,则创建一个新文件夹。
assets/models which were used in the above code.
如果您想尝试以下代码:
  • npm install react-native-gl-model-view --save
  • 在注释 1 所示的位置添加 Assets 。
  • 创建文件 Muliple.js 并粘贴上面的代码
  • npm run android

  • 抱歉,我想向您展示 expo snap 中的代码,但它不起作用并显示以下错误: requireNativeComponent: "RNGLModelView" was not found in the UIManager.

    最佳答案

    有时包没有链接到项目或需要重建。如果您确定已完成添加该 的所有步骤,请再次将包链接到项目:

    react-native link react-native-gl-model-view
    如果这不起作用,如果您有 android studio ,请在您的模拟器上重新安装该项目。

    关于javascript - 在 react-native-gl-model-view 中使用多个 3d 对象时应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67148721/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com