Skip to content

Commit

Permalink
doc todo
Browse files Browse the repository at this point in the history
  • Loading branch information
cryham committed Sep 16, 2024
1 parent 1c90ce2 commit 01ead19
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 8 deletions.
2 changes: 1 addition & 1 deletion config/editor-default.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ trees_dist = 2.000000
lod = 0.400000
map_size = 1
reflect = on
refract = off
refract = on
water_dist = 10000.000000

[ gui_tracks ]
Expand Down
16 changes: 10 additions & 6 deletions docs/Roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,20 @@ Marked: `crucial`, **Next or Big**, _Important_.

### SR 3.2

fix all trks: vegetation factor still 1, on horizon
**fix** old no refract water: stretched, no anim
**no** water collis? on: Butterfly, SlopeCity..

🌊**fix** no refract water stretched, no anim
pass projmatrix not **inverse**
new game **video**
gallery screens, website screens

**no** water collis? on: Butterfly, SlopeCity..
### SR 3.3

🌊**refract**, depth: pass projmatrix not **inverse**
fix refract underwater top
*fix splitscreen* broken with refractions

fix compositor / rqg:
car glass not refracted, offset, glass pipes not underwater
fix refract depth write, glass pipes not underwater
fix compositor / rqg: car glass not refracted, offset
more fluids at once, blink on MilkyWay
**add** params: refract clr, *depth* clr, emissive fluids?

Expand All @@ -32,6 +35,7 @@ cd SSAO, fog fade?, convert .compositor to C++

💎Add **gems** to tracks, more types 3d
xml par continuous?, logic btn continue, hid collected gems on start?

*new* track(s) with **fields**, add walls
hud new best time show, win particles-

Expand Down
8 changes: 7 additions & 1 deletion src/road/Road_Rebuild.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,13 @@ void SplineRoad::createSeg_Meshes(
auto it = rs.road[lod].it,
it2 = rs.road[lod].it2;
if (it)
{ auto que =
{
bool refra = 0; // todo ?
// bool refra = mtr.substr(0,5) == "River"
// && pApp->pSet->g.water_refract;

auto que =
refra ? RQG_Refract :
//IsTrail() ? RQG_RoadBlend /*: RQG_Hud1*/ : // ?
IsRiver() ? RQG_Fluid :
pipeGlass ? RQG_PipeGlass : RQG_Road;
Expand Down

0 comments on commit 01ead19

Please sign in to comment.