- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
hi how do i change an ambient light in realtime i added it at using the normal -ambientlight args
for gamma i was able to add extra function in like
void setgamma(float gamma)
{
g_device->rtSetFloat1(g_tonemapper, "gamma", gamma);
g_device->rtCommit(g_tonemapper);
}
and it works fine but the lights are added as a primative and im not so sure how to go about this also how would i change a material color also along these lines
many thanks
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The Embree renderer is designed for renderer single frames, support for dynamic changes is limited. When changing the color of an object you have to set the color using some rtSetFloat3 call, them commit using a rtCommit call. Now your handle refers to a new object and you have to recreate the scene again. There is currently no way around rebuilding the scene.
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page