mirror of
https://github.com/Q3Rally-Team/q3rally.git
synced 2024-11-25 05:11:00 +00:00
working on surfaceparms
This commit is contained in:
parent
c21ea13ba0
commit
4c7503d798
5 changed files with 30 additions and 16 deletions
Binary file not shown.
Before Width: | Height: | Size: 8 KiB |
|
@ -7,12 +7,12 @@
|
||||||
|
|
||||||
//custom SURF_ flags
|
//custom SURF_ flags
|
||||||
{
|
{
|
||||||
grass 0x80000
|
SURF_GRASS 0x80000
|
||||||
asphalt 0x100000
|
SURF_ASPHALT 0x100000
|
||||||
wet 0x200000
|
SURF_WET 0x200000
|
||||||
snow 0x400000
|
SURF_SNOW 0x400000
|
||||||
gravel 0x800000
|
SURF_GRAVEL 0x800000
|
||||||
ice 0x1000000
|
SURF_ICE 0x1000000
|
||||||
dirt 0x2000000
|
SURF_DIRT 0x2000000
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -67,7 +67,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
#define BASETA "missionpack"
|
#define BASETA "missionpack"
|
||||||
|
|
||||||
#ifndef PRODUCT_VERSION
|
#ifndef PRODUCT_VERSION
|
||||||
#define PRODUCT_VERSION "v0.0.1.3_r242"
|
#define PRODUCT_VERSION "v0.0.1.4_r245"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -83,9 +83,11 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
// STONELANCE
|
// STONELANCE
|
||||||
#define SURF_GRASS 0x80000
|
#define SURF_GRASS 0x80000
|
||||||
#define SURF_ASPHALT 0x100000
|
#define SURF_ASPHALT 0x100000
|
||||||
#define SURF_WET 0x200000
|
#define SURF_WET 0x200000
|
||||||
#define SURF_SNOW 0x400000
|
#define SURF_SNOW 0x400000
|
||||||
#define SURF_GRAVEL 0x800000
|
#define SURF_GRAVEL 0x800000
|
||||||
#define SURF_ICE 0x1000000
|
#define SURF_ICE 0x1000000
|
||||||
#define SURF_DIRT 0x2000000
|
#define SURF_DIRT 0x2000000
|
||||||
|
#define SURF_METAL 0x4000000
|
||||||
// END
|
// END
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ HTServer=localhost
|
||||||
[Project tree]
|
[Project tree]
|
||||||
q3rallycode
|
q3rallycode
|
||||||
+engine
|
+engine
|
||||||
+code
|
-code
|
||||||
-AL
|
-AL
|
||||||
engine\code\AL\al.h
|
engine\code\AL\al.h
|
||||||
engine\code\AL\alc.h
|
engine\code\AL\alc.h
|
||||||
|
@ -486,7 +486,7 @@ q3rallycode
|
||||||
engine\code\q3_ui\ui_team.c
|
engine\code\q3_ui\ui_team.c
|
||||||
engine\code\q3_ui\ui_teamorders.c
|
engine\code\q3_ui\ui_teamorders.c
|
||||||
engine\code\q3_ui\ui_video.c
|
engine\code\q3_ui\ui_video.c
|
||||||
+qcommon
|
-qcommon
|
||||||
engine\code\qcommon\cm_load.c
|
engine\code\qcommon\cm_load.c
|
||||||
engine\code\qcommon\cm_local.h
|
engine\code\qcommon\cm_local.h
|
||||||
engine\code\qcommon\cm_patch.c
|
engine\code\qcommon\cm_patch.c
|
||||||
|
@ -860,12 +860,24 @@ q3rallycode
|
||||||
[Open project files]
|
[Open project files]
|
||||||
0=engine\code\qcommon\files.c
|
0=engine\code\qcommon\files.c
|
||||||
1=engine\code\qcommon\q_shared.h
|
1=engine\code\qcommon\q_shared.h
|
||||||
|
2=engine\Makefile
|
||||||
|
3=engine\code\cgame\cg_players.c
|
||||||
|
4=engine\code\qcommon\surfaceflags.h
|
||||||
[Selected Project Files]
|
[Selected Project Files]
|
||||||
Main=
|
Main=
|
||||||
Selected=engine\code\qcommon\q_shared.h
|
Selected=engine\code\qcommon\q_shared.h
|
||||||
[engine\code\qcommon\files.c]
|
[engine\code\qcommon\files.c]
|
||||||
TopLine=194
|
TopLine=184
|
||||||
Caret=3,211
|
Caret=3,211
|
||||||
[engine\code\qcommon\q_shared.h]
|
[engine\code\qcommon\q_shared.h]
|
||||||
TopLine=49
|
TopLine=49
|
||||||
Caret=34,70
|
Caret=39,70
|
||||||
|
[engine\Makefile]
|
||||||
|
TopLine=99
|
||||||
|
Caret=17,114
|
||||||
|
[engine\code\cgame\cg_players.c]
|
||||||
|
TopLine=2747
|
||||||
|
Caret=1,2762
|
||||||
|
[engine\code\qcommon\surfaceflags.h]
|
||||||
|
TopLine=69
|
||||||
|
Caret=1,93
|
||||||
|
|
Loading…
Reference in a new issue