mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 04:50:26 +00:00
7de683f9f5
- started with the AST converter. So far it only deals with direct function calls with simple constants as parameters. - added an error condition for the defaults block to get rid of some asserts.
25 lines
230 B
Text
25 lines
230 B
Text
|
|
class CajunBodyNode : Actor
|
|
{
|
|
Default
|
|
{
|
|
+NOSECTOR
|
|
+NOGRAVITY
|
|
+INVISIBLE
|
|
}
|
|
}
|
|
|
|
class CajunTrace : Actor
|
|
{
|
|
Default
|
|
{
|
|
Speed 12;
|
|
Radius 6;
|
|
Height 8;
|
|
+NOBLOCKMAP
|
|
+DROPOFF
|
|
+MISSILE
|
|
+NOGRAVITY
|
|
+NOTELEPORT
|
|
}
|
|
}
|