SceneKit - 照明和投射阴影 [英] SceneKit - Lighting and casting shadows

查看:203
本文介绍了SceneKit - 照明和投射阴影的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试创建一个照亮立方体的聚光灯。然后下面的表面应该显示阴影。不幸的是我无法做到这一点。光线忽略了立方体并将光线投射到表面和立方体上 - 无论立方体是否在路上。

I'm trying to create a spot light that illuminates a cube. The surface underneath should then show a shadow. Unfortunately I wasn't able to achieve this. The light ignores the cube and casts the light on both - the surface and the cube - regardless that the cube is in the way.

它看起来如何:

代码,我只是在每个节点上将castsShadow设置为YES进行测试,但到目前为止没有任何帮助:

The code, I just set castsShadow to YES on every node for testing, but nothing so far helped:

BOOL shadows = YES;

_baseNode.castsShadow = shadows;
_scene.rootNode.castsShadow = shadows;

SCNBox *box = [SCNBox boxWithWidth: 50 height: 50 length: 50 chamferRadius: 10];
box.firstMaterial.diffuse.contents = [UIColor colorWithRed: 0.0 green:0.0 blue: 0.8 alpha: 1.0];
box.firstMaterial.doubleSided = YES;
SCNNode *boxNode = [SCNNode nodeWithGeometry: box];

boxNode.position = SCNVector3Make(100, 100, 100);
boxNode.castsShadow = shadows;
[_baseNode addChildNode: boxNode];

SCNBox *plane = [SCNBox boxWithWidth: 1000 height:1000 length: 40 chamferRadius: 10];
plane.firstMaterial.diffuse.contents = [UIColor colorWithWhite: 0.2 alpha: 1.0];
SCNNode *planeNode = [SCNNode nodeWithGeometry: plane];
planeNode.position = SCNVector3Make(100, 100,  0);
planeNode.castsShadow = shadows;
[_baseNode addChildNode: planeNode];


SCNNode *lightNode = [SCNNode node];
lightNode.light = [SCNLight light];
lightNode.light.type = SCNLightTypeSpot;
lightNode.light.spotInnerAngle = 0;
lightNode.light.spotOuterAngle = 45;
lightNode.light.shadowRadius = 10.0;
lightNode.light.zFar = 10000;
lightNode.light.shadowColor = [UIColor colorWithRed: 0.0 green: 1.0 blue:0.0 alpha: 1.0];
lightNode.castsShadow = shadows;
lightNode.position = SCNVector3Make(100, 100, 170);
[_baseNode addChildNode:lightNode];

SCNNode *lightNode2 = [SCNNode node];
lightNode2.light = [SCNLight light];
lightNode2.light.type = SCNLightTypeAmbient;
lightNode2.light.color = [UIColor colorWithRed: 0.3 green: 0.3 blue:0.3 alpha: 1.0];
[_baseNode addChildNode: lightNode2];

[_scene.rootNode addChildNode: _baseNode];

}

推荐答案

你必须在 SCNLight 上设置 castsShadow (而不是保存灯光的SCNNode

you have to set castsShadow on the SCNLight (instead of on the SCNNode that holds the light).

这篇关于SceneKit - 照明和投射阴影的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆