Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
illuna-minetest
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
illuna-minetest
Commits
0847e550
Commit
0847e550
authored
13 years ago
by
Perttu Ahola
Browse files
Options
Downloads
Patches
Plain Diff
added simple skybox
parent
7a367f96
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
data/skybox1.png
+0
-0
0 additions, 0 deletions
data/skybox1.png
data/skybox2.png
+0
-0
0 additions, 0 deletions
data/skybox2.png
data/skybox3.png
+0
-0
0 additions, 0 deletions
data/skybox3.png
src/game.cpp
+10
-8
10 additions, 8 deletions
src/game.cpp
with
10 additions
and
8 deletions
data/skybox1.png
0 → 100644
+
0
−
0
View file @
0847e550
236 B
This diff is collapsed.
Click to expand it.
data/skybox2.png
0 → 100644
+
0
−
0
View file @
0847e550
231 B
This diff is collapsed.
Click to expand it.
data/skybox3.png
0 → 100644
+
0
−
0
View file @
0847e550
190 B
This diff is collapsed.
Click to expand it.
src/game.cpp
+
10
−
8
View file @
0847e550
...
@@ -605,10 +605,9 @@ void the_game(
...
@@ -605,10 +605,9 @@ void the_game(
// The color of the sky
// The color of the sky
//video::SColor skycolor = video::SColor(255,90,140,200);
//video::SColor skycolor = video::SColor(255,140,186,250);
//video::SColor skycolor = video::SColor(255,166,202,244);
//video::SColor skycolor = video::SColor(255,120,185,244);
video
::
SColor
bgcolor_bright
=
video
::
SColor
(
255
,
170
,
200
,
230
);
video
::
SColor
skycolor
=
video
::
SColor
(
255
,
140
,
186
,
250
);
/*
/*
Draw "Loading" screen
Draw "Loading" screen
...
@@ -719,14 +718,14 @@ void the_game(
...
@@ -719,14 +718,14 @@ void the_game(
/*
/*
Create skybox
Create skybox
*/
*/
/*
scene::ISceneNode* skybox;
scene
::
ISceneNode
*
skybox
;
skybox
=
smgr
->
addSkyBoxSceneNode
(
skybox
=
smgr
->
addSkyBoxSceneNode
(
driver
->
getTexture
(
porting
::
getDataPath
(
"skybox2.png"
).
c_str
()),
driver
->
getTexture
(
porting
::
getDataPath
(
"skybox2.png"
).
c_str
()),
driver
->
getTexture
(
porting
::
getDataPath
(
"skybox3.png"
).
c_str
()),
driver
->
getTexture
(
porting
::
getDataPath
(
"skybox3.png"
).
c_str
()),
driver
->
getTexture
(
porting
::
getDataPath
(
"skybox1.png"
).
c_str
()),
driver
->
getTexture
(
porting
::
getDataPath
(
"skybox1.png"
).
c_str
()),
driver
->
getTexture
(
porting
::
getDataPath
(
"skybox1.png"
).
c_str
()),
driver
->
getTexture
(
porting
::
getDataPath
(
"skybox1.png"
).
c_str
()),
driver
->
getTexture
(
porting
::
getDataPath
(
"skybox1.png"
).
c_str
()),
driver
->
getTexture
(
porting
::
getDataPath
(
"skybox1.png"
).
c_str
()),
driver->getTexture(porting::getDataPath("skybox1.png").c_str()));
*/
driver
->
getTexture
(
porting
::
getDataPath
(
"skybox1.png"
).
c_str
()));
/*
/*
Create the camera node
Create the camera node
...
@@ -1676,9 +1675,12 @@ void the_game(
...
@@ -1676,9 +1675,12 @@ void the_game(
u8
l
=
decode_light
((
daynight_ratio
*
LIGHT_SUN
)
/
1000
);
u8
l
=
decode_light
((
daynight_ratio
*
LIGHT_SUN
)
/
1000
);
video
::
SColor
bgcolor
=
video
::
SColor
(
video
::
SColor
bgcolor
=
video
::
SColor
(
255
,
255
,
skycolor
.
getRed
()
*
l
/
255
,
bgcolor_bright
.
getRed
()
*
l
/
255
,
bgcolor_bright
.
getGreen
()
*
l
/
255
,
bgcolor_bright
.
getBlue
()
*
l
/
255
);
/*skycolor.getRed() * l / 255,
skycolor.getGreen() * l / 255,
skycolor.getGreen() * l / 255,
skycolor
.
getBlue
()
*
l
/
255
);
skycolor.getBlue() * l / 255);
*/
/*
/*
Update coulds
Update coulds
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment