SuperTuxKart 1.5 upstream source (from official release tarball)
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 1.1 MiB |
Binary file not shown.
|
After Width: | Height: | Size: 986 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 961 KiB |
Binary file not shown.
@@ -0,0 +1,12 @@
|
||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: High Quality modern street lamp for SuperTuxKart
|
||||
Upstream-Contact: Jean-Manual "samuncle" Clémençon <sam.un@protonmail.com>
|
||||
Source: https://supertuxkart.net
|
||||
License: CC-BY-SA 4.0
|
||||
|
||||
Files: *
|
||||
Copyright:
|
||||
Copyright 2018 Jean-Manuel Clémençon for SuperTuxKart team (3D objects and textures)
|
||||
Copyright 2018 Allegorithmic for material sources used in textures
|
||||
License: CC-BY-SA 4.0
|
||||
Comment: From https://www.allegorithmic.com/legal/substance-share
|
||||
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- Generated with script from SVN rev Unknown -->
|
||||
<materials>
|
||||
<material name="hd_modernStreetLamp_a_Albedo.png" shader="dynamicnightbloom" tex-layer-2="hd_modernStreetLamp_a_PbrData.png" tex-layer-3="hd_modernStreetLamp_a_Normal.png"/>
|
||||
</materials>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- Generated with script from SVN rev 17016 -->
|
||||
<scene>
|
||||
<object id="hd_modernStreetLamp_a_main" type="animation" xyz="0.00 0.00 0.00" hpr="0.0 -0.0 0.0" scale="1.00 1.00 1.00" interaction="ghost" model="hd_modernStreetLamp_a_main.spm" skeletal-animation="false">
|
||||
</object>
|
||||
<light xyz="0.00 0.00 -6.00" id="Lamp" distance="25.00" energy="2.50" color="69 161 255">
|
||||
</light>
|
||||
</scene>
|
||||
@@ -0,0 +1,14 @@
|
||||
/* Script used to disable point light for lamps when the track is set during day
|
||||
Jean-Manuel Clemencon (c) 2018 for SuperTuxKart
|
||||
*/
|
||||
namespace hd_modernStreetLamp_a
|
||||
{
|
||||
void onStart(const string instID)
|
||||
{
|
||||
if (Track::isDuringDay())
|
||||
{
|
||||
Track::TrackObject@ lamp = Track::getTrackObject(instID, "Lamp");
|
||||
lamp.setEnabled(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user