mapinfo: ignore some more fields in "UMAPINFO"
[k8vavoom.git] / progs / common / linespec / TeleportDest.vc
blobc67f6123ecafc10f92903f5609c9f434329c940d
1 //**************************************************************************
2 //**
3 //**    ##   ##    ##    ##   ##   ####     ####   ###     ###
4 //**    ##   ##  ##  ##  ##   ##  ##  ##   ##  ##  ####   ####
5 //**     ## ##  ##    ##  ## ##  ##    ## ##    ## ## ## ## ##
6 //**     ## ##  ########  ## ##  ##    ## ##    ## ##  ###  ##
7 //**      ###   ##    ##   ###    ##  ##   ##  ##  ##       ##
8 //**       #    ##    ##    #      ####     ####   ##       ##
9 //**
10 //**  Copyright (C) 1999-2006 Jānis Legzdiņš
11 //**  Copyright (C) 2018-2023 Ketmar Dark
12 //**
13 //**  This program is free software: you can redistribute it and/or modify
14 //**  it under the terms of the GNU General Public License as published by
15 //**  the Free Software Foundation, version 3 of the License ONLY.
16 //**
17 //**  This program is distributed in the hope that it will be useful,
18 //**  but WITHOUT ANY WARRANTY; without even the implied warranty of
19 //**  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 //**  GNU General Public License for more details.
21 //**
22 //**  You should have received a copy of the GNU General Public License
23 //**  along with this program.  If not, see <http://www.gnu.org/licenses/>.
24 //**
25 //**************************************************************************
26 class TeleportDest : Actor __mobjinfo__(14);
28 defaultproperties {
29   bNoSector = true;
30   bNoBlockmap = true;
31   // this needs no thinker
32   bNoTickGrav = true;
36 //**************************************************************************
37 //**
38 //**  Teleport dest that can spawn above floor
39 //**
40 //**************************************************************************
41 class TeleportDest2 : TeleportDest __mobjinfo__(9044);
43 defaultproperties {
44   bNoGravity = true;
45   // this needs no thinker
46   bNoTickGrav = true;
50 //**************************************************************************
51 //**
52 //**  Z-preserving dest subject to gravity (for TeleportGroup, etc.)
53 //**
54 //**************************************************************************
55 class TeleportDest3 : TeleportDest2 __mobjinfo__(9043);
57 defaultproperties {
58   bNoGravity = false;
59   // this needs no thinker
60   bNoTickGrav = true;