light map in Unity
Using light map, Information about static light sources can be (color, shadow, direction, etc.) are stored on the texture. When rendering static objects, it is not necessary to perform multiple light pass es, but directly sample and calculate from the texture. Using light map can realize indirect lighting and global lighting at a low cost. Turn ...
Added by cuboidgraphix on Sat, 25 Dec 2021 09:53:24 +0200
[Overload game engine] source code analysis Part 10: OvRendering function library
2021SC@SDUSC
catalogue
Model
1. Structure and Deconstruction
2.GetBoundingSphere and ComputeBoundingSphere
The modelloader class was mentioned in the previous sections. This section will formally describe the content of the Model class.
Model
Like Shader and Texture, the model takes its own loader as a friend class at the beginning. At ...
Added by j4IzbInao on Sat, 04 Dec 2021 00:49:24 +0200
irrlicht learning notes - from getting started to giving up
irrlicht learning notes - from getting started to giving up
This is a game engine developer irrlicht's learning notes
Written at the end
Spent a day, through the rough study of irrlicht.
Know the basic usage, how to load resources, create nodes, how to load maps, GUI, collision detection, built-in effects, programmable rendering pipelin ...
Added by pvraja on Sat, 27 Nov 2021 22:09:38 +0200
Python+Opengl realizes real-time interactive writing on blocks with B-spline curves
introduction
The blogger is a student of grade 2021 Graduate School of computer science at Beijing University of technology. This task is the first major assignment of the course of computer graphics. Because I haven't contacted opengl before, I spent some effort in completing this operation. Because we can't find the code that meets the ...
Added by t_galan on Tue, 16 Nov 2021 15:04:32 +0200
opengl advanced lighting HDR
HDR
OpenGL HDR official document
content
Generally speaking, when stored in the frame buffer, the values of brightness and color are limited to 0.0 to 1.0 by default. This seemingly innocent statement makes us always set the brightness and color values within this range, trying to fit the scene. This can run and give good results. But what h ...
Added by B0b on Thu, 11 Nov 2021 02:19:05 +0200
Computer graphics to achieve mouse drag primitives
Computer graphics to achieve mouse drag primitives
Problem description
When it is necessary to drag primitives in computer graphics, the key is how to judge whether the mouse is dragging and the movement of the mouse when it is dragged
Determines whether the mouse is pressed inside the element or moved inside the elementConfirm the movement ...
Added by volant on Tue, 26 Oct 2021 14:02:15 +0300