gpt4 book ai didi

ios - Toon.shader 找不到 _light 变量

转载 作者:行者123 更新时间:2023-11-29 02:15:41 25 4
gpt4 key购买 nike

所以我在 Apple 的 SceneKit 中加载我的自定义着色器。

- (NSDictionary *)celShading {
NSMutableDictionary *shaders = [NSMutableDictionary new];
shaders[SCNShaderModifierEntryPointFragment] =
[NSString stringWithContentsOfURL:[[NSBundle mainBundle] URLForResource:@"toon" withExtension:@"shader"]
encoding:NSUTF8StringEncoding
error:NULL];
return shaders;
}

我的自定义着色器是 toon.shader

vec3 lDir = normalize(vec3(0.1,1.0,1.0));
float dotProduct = dot(_surface.normal,lDir);

_lightingContribution.diffuse += (dotProduct * dotProduct * _light.intensity.rgb);
_lightingContribution.diffuse = floor(_lightingContribution.diffuse * 4.0) / 3.0;

vec3 halfVector = normalize(lDir + _surface.view);

dotProduct = max(0.0, pow(max(0.0, dot(_surface.normal, halfVector)), _surface.shininess));
dotProduct = floor(dotProduct * 3.0) / 3.0;

//_lightingContribution.specular += (dotProduct * _light.intensity.rgb);
_lightingContribution.specular = vec3(0,0,0);

这就是我遇到的错误。

2015-02-27 12:52:48.164 ShadeTest[4729:499612] SceneKit: error, failed to link program: ERROR: 0:64: Use of undeclared identifier '_light'

最佳答案

_light 结构仅在 SCNShaderModifierEntryPointLightingModel 入口点可用。

可以看一下头文件,比SCNShadable protocol documentation详细一点.

关于ios - Toon.shader 找不到 _light 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28774207/

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