projects
/
blank.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9da6ac5
)
last resort lighting on render
author
Daniel Karbach
<daniel.karbach@localhorst.tv>
Thu, 8 Oct 2015 06:50:12 +0000
(08:50 +0200)
committer
Daniel Karbach
<daniel.karbach@localhorst.tv>
Thu, 8 Oct 2015 18:48:41 +0000
(20:48 +0200)
src/world/chunk.cpp
patch
|
blob
|
history
diff --git
a/src/world/chunk.cpp
b/src/world/chunk.cpp
index 452e7aa3b3cf23345c7cb1e7f085e3c5d16572c5..baad4466cde01790851b5f8877e2350d4e8a53b5 100644
(file)
--- a/
src/world/chunk.cpp
+++ b/
src/world/chunk.cpp
@@
-668,7
+668,11
@@
void ChunkRenderer::LoadTextures(const AssetLoader &loader, const TextureIndex &
void ChunkRenderer::Update(int dt) {
for (int i = 0, updates = 0; updates < dt && i < index.TotalChunks(); ++i) {
- if (index[i] && index[i]->ShouldUpdateModel()) {
+ if (!index[i]) continue;
+ if (!index[i]->Lighted() && index.HasAllSurrounding(index[i]->Position())) {
+ index[i]->ScanLights();
+ }
+ if (index[i]->ShouldUpdateModel()) {
index[i]->Update(models[i]);
++updates;
}