• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 来自sketchup的场景包模型消失了

[复制链接]
菜鸟教程小白 发表于 2022-12-13 02:59:47 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在玩场景套件。

我对建模了解不多,但我创建了一个非常基本的 Sketchup 模型,没有 Material 或纹理。

我从番茄酱中导出模型并将其导入到场景中。

当我将相机移向模型的一端时,后部会消失,反之亦然。当相机向前旋转时,后面会被黑色阴影覆盖。

这是什么原因?

照明?这是场景的代码。它是一个基本的 Xcode 游戏项目

// create a new scene
SCNScene *scene = [SCNScene sceneNamed"ship_transport.dae"];

// create and add a camera to the scene
SCNNode *cameraNode = [SCNNode node];
cameraNode.camera = [SCNCamera camera];
[scene.rootNode addChildNode:cameraNode];

// place the camera
cameraNode.position = SCNVector3Make(0, 0, 100);

// create and add an ambient light to the scene
SCNNode *ambientLightNode = [SCNNode node];
ambientLightNode.light = [SCNLight light];
ambientLightNode.light.type = SCNLightTypeAmbient
ambientLightNode.light.color = [UIColor whiteColor];
[scene.rootNode addChildNode:ambientLightNode];


// retrieve the ship node
SCNNode *ship = [scene.rootNode childNodeWithName"ship" recursively:YES];
ship.geometry.firstMaterial.diffuse.contents = [UIColor redColor];
ship.geometry.firstMaterial.specular.contents = [UIColor whiteColor];
SCNVector3 vector = SCNVector3Make(.1, .1, .1);
[ship setScale:vector];
//[scene.rootNode addChildNode:lightNode];

// animate the 3d object
[ship runAction:[SCNAction repeatActionForever:[SCNAction rotateByX:0 y:0 z:0 duration:1]]];

// retrieve the SCNView
SCNView *scnView = (SCNView *)self.view;
scnView.autoenablesDefaultLighting = true;

// set the scene to the view
scnView.scene = scene;

// allows the user to manipulate the camera
scnView.allowsCameraControl = YES;

// show statistics such as fps and timing information
scnView.showsStatistics = YES;

// configure the view
scnView.backgroundColor = [UIColor darkGrayColor];



Best Answer-推荐答案


尝试在相机上设置 zFar 属性。其他可以尝试更改的相关属性是 xFov 和 yFov。

关于ios - 来自sketchup的场景包模型消失了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26686782/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap