-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactor-advanced.html
More file actions
134 lines (129 loc) · 9.52 KB
/
actor-advanced.html
File metadata and controls
134 lines (129 loc) · 9.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head lang="en">
<title>UnrealWiki: Actor/Advanced</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" media="screen, print"
href="shared/stylebase.structural.css">
<link rel="stylesheet" type="text/css" media="screen"
href="shared/template-default.css">
<link rel="stylesheet" type="text/css" media="screen"
href="shared/styles.chblue.css">
<link rel="stylesheet" type="text/css" media="print"
href="shared/template-default-print.css">
<!--[if IE 6]>
<style>
/* dirty hack for IE6. */
#quickbar {
position: absolute;
}
</style>
<![endif]-->
<link rel="start" href="http://wiki.beyondunreal.com/">
<link rel="glossary" href="http://wiki.beyondunreal.com/wiki/Terminology">
<link rel="help" href="http://wiki.beyondunreal.com/wiki/Using_The_Wiki">
<script type="text/javascript" src="shared/dhtml.js"></script>
<script type="text/javascript" src="shared/dhtml-menu.js"></script>
<style type="text/css">#dhtml-menu { background: #eee; padding: 5px 0px; margin-right: -20px; border: 1px solid #888; border-left: 1px solid #ccc; border-top: 1px solid #ccc; border-right: 1px solid #888; border-bottom: 1px solid #888 }
#dhtml-menu td { color: #000; font-family: Arial,Helvetica,sans-serif; font-size: 9pt; line-height: 13pt; padding: 1px 10px; cursor: default }
#dhtml-menu a { color: #000; font-family: Arial,Helvetica,sans-serif; font-size: 9pt; line-height: 13pt; text-decoration: none }
#dhtml-menu tt { font-family: monospace; font-size: 9pt }
#dhtml-menu-separator { height: 1px; background: red }
#dhtml-menu-anchor { cursor: default }
</style>
<script type="text/javascript" src="shared/expandable.js"></script>
</head>
<body onLoad="menuInit(); document.cookie='page=Actor/Advanced; path=/'" class="default">
<div id="scrolling"><!-- contains all except the fixed sidebar -->
<div id="topbar" class="bar">
<div class="righthalf">
<form class="inline" method="post" action="/wiki" enctype="application/x-www-form-urlencoded"><input type="text" name="search" size="20" /> <input type="submit" name="search" value="search" /></form>
</div>
<div class="lefthalf">
<script type="text/javascript"><!--
menuAlignRight = false;
//--></script>
<span><script type="text/javascript"><!--
menuWriteAnchor("Quick Navigation") //--></script></span> | <a href="(start).html">Home Page</a> | <a href="recent-changes.html">Recent Changes</a> | <a href="http://wiki.beyondunreal.com/wiki?action=editprefs">Preferences</a>
</div>
</div>
<div id="content"><!-- contains the title and article -->
<h1 class='pagetitle'><a href="actor.html">Actor</a>/<a href="http://wiki.beyondunreal.com/wiki?back=Actor/Advanced">Advanced</a></h1>
<div class="wiki"><div class="classpath"><img src="shared//gameicons/icon-ut2003.png"> <a href="unreal-tournament-2003.html">UT2003</a> :: <a href="object.html">Object</a> >> <a href="actor.html">Actor</a> (Property Group: Advanced)<br></div>
<p>(also see <a href="actor-ut-advanced.html">Actor (UT)/Advanced</a>)</p>
<h2><a name="0.1"></a>Game-specific Properties</h2>
<dl><dt>bool bCanTeleport</dt><dd>This actor can be teleported. This property must be True for <a href="teleporter.html">Teleporter</a>s to notice the actor.</dd><dt>bool bHidden</dt><dd>Specifies, whether the actor is invisible in the game. This property has no effect in the editor.</dd><dt>bool bNoDelete (const)</dt><dd>Specifies, that the actor can't be spawned or destroyed during the game.</dd><dt>bool bHighDetail</dt><dd>The actor only shows up in high or super high detail mode.</dd><dt>bool bSuperHighDetail</dt><dd>The actor only shows up in super high detail mode.</dd><dt>bool bGameRelevant</dt><dd>Mutators will not receive CheckReplacement and AlwaysKeep calls for the actor if this property is True.</dd><dt>bool bShouldBaseAtStartup</dt><dd>The actor tries to find another actor for its Base (see <a href="actor-properties.html">/Properties</a>) at level startup if its Physics property is set to either PHYS_None or PHYS_Rotating.</dd><dt>bool bStasis</dt><dd>In standalone (i.e. single player, e.g. Instant Action) games this actor should be turned off if it's not in a recently rendered zone. It will only be turned off when its Physics mode is PHYS_None or PHYS_Rotating. (see <a href="actor-movement.html">/Movement</a> and <a href="physicstype.html">PhysicsType</a>)</dd><dt>bool bNetNotify</dt><dd>The actor wishes to be notified of <a href="replication.html">replication</a> events. The actor gets the simulated function PostNetReceive() called whenever replication occurs, e.g. in Ammunition whenever AmmoAmount gets changed.</dd><dt>float Lifespan</dt><dd>Specifies how long the actor will exist. This value is constantly decreased and the actor will be destroyed when it reaches 0. In this case the actor's Expired method is executed. An initial LifeSpan of 0 or explicitely setting the LifeSpan to 0 from UnrealScript disables the actor's "destruction timer". Setting it to a value greater 0 from UnrealScript enables it and the Actor will be destroyed after that time unless LifeSpan is set to 0 again before it expired.</dd></dl>
<h2><a name="0.2"></a>Editor-specific Properties</h2>
<dl><dt>bool bCollideWhenPlacing</dt><dd>The actor will collide with world geometry when placed.</dd><dt>bool bDirectional</dt><dd>Whether the editor should display an arrow to show the actor's current rotation. This has no effect in the game. The rotation is set in <a href="actor-movement.html">Movement</a> → Rotation, or by using the <a href="brush-rotate.html">Brush Rotate</a> tool on the actor.</dd><dt>bool bEdShouldSnap</dt><dd>Snap to grid in the editor.</dd></dl>
<blockquote><p>TIP: If you add powerups to the map, make sure you go into the <a href="default-properties.html">default properties</a> (not individual properties!!!) of the designated actor, mark that true, place all you want, and then, mark that false. It will align the ammo or the pickup base to grid and make your map be more like eye-candy (heck, ALL maps are eye candy! <img alt=";)" src="emoticons/wink.gif" align="middle">) </p>
</blockquote><dl><dt>bool bHiddenEd</dt><dd>The actor is hidden in the editor. This has no effect in the game.</dd><dt>bool bHiddenEdGroup</dt><dd>The actor is hidden in the Group Browser. This has no effect in the editor viewports or in the game.</dd><dt>bool bLockLocation</dt><dd>Prevent the actor from being moved in the editor.</dd><dt>bool bMovable</dt><dd>Actor can be moved. When false, location can't be changed in-game. This doesn't count for the editor.</dd></dl>
<script type="text/javascript"><!--
menuItemAdd("Game-specific Properties", "#0.1");
menuItemAdd("Editor-specific Properties", "#0.2");
menuWrite() //--></script></div>
</div>
<div id="footer" class="bar">
<p><form method="post" action="http://wiki.beyondunreal.com/wiki" enctype="application/x-www-form-urlencoded">
<a href="(start).html">Home Page</a> | <a href="actor.html">Actor</a> | <a href="recent-changes.html">Recent Changes</a> | <a href="http://wiki.beyondunreal.com/wiki?action=editprefs">Preferences</a><br>
<a href="http://wiki.beyondunreal.com/wiki?action=edit&id=Actor/Advanced">Edit text of this page</a> | <a href="http://wiki.beyondunreal.com/wiki?action=history&id=Actor/Advanced">View other revisions</a><br>Last edited January 13, 2005 21:14 <a href="http://wiki.beyondunreal.com/wiki?action=browse&diff=1&id=Actor/Advanced">(diff)</a><br>Search: <input type="text" name="search" size="20" /><input type="hidden" name="dosearch" value="1" /><br><br><small><a href="http://wiki.beyondunreal.com/wiki/Actor/Advanced">Original page</a> – copy created Sat, Jun 23, 2007</small><div></div>
</form>
</p>
<p>I search for solutions in this order: Past Code, Unreal Source, Wiki, BUF, groups.yahoo, google, screaming at monitor. (RegularX)
</p>
</div>
</div><!-- close of "scrolling" div -->
<div id="quickbar">
<div id="logo"><a href="http://wiki.beyondunreal.com/"><img src="shared/wikilogo.jpg" width="143" height="100" border="0"></a>
</div>
<div class="qbsitename">
<p>The Unreal Engine Documentation Site</p>
</div>
<div class="qbsection">
<p><a href="metatopics.html">Wiki Community</a></p>
<p><a href="category-category.html">Topic Categories</a></p>
<p><a href="/cgi-bin/imageupload.cgi/wiki-ext/imageupload.htt" target="_blank ">Image Uploads</a></p>
<p><a href="http://wiki.beyondunreal.com/wiki?action=random">Random Page</a></p>
<p><a href="recent-changes.html">Recent Changes</a></p>
<p><a href="offline-wiki.html">Offline Wiki</a></p>
</div><div class="qbsection">
<p><a href="unreal-engine.html">Unreal Engine</a></p>
<p><a href="console-commands.html">Console Commands</a></p>
<p><a href="terminology.html">Terminology</a></p>
<p><a href="category-faq.html">FAQs</a></p>
<p><a href="help-desk.html">Help Desk</a></p>
</div><div class="qbsection">
<p><a href="topics-on-mapping.html">Mapping Topics</a></p>
<p><a href="mapping-lessons.html">Mapping Lessons</a></p>
<p><a href="unrealed-3.html">UnrealEd Interface</a></p>
</div><div class="qbsection">
<p><a href="unrealscript.html">UnrealScript Topics</a></p>
<p><a href="unrealscript-lessons.html">UnrealScript Lessons</a></p>
<p><a href="making-mods.html">Making Mods</a></p>
<p><a href="class-tree.html">Class Tree</a></p>
</div><div class="qbsection">
<p><a href="topics-on-modeling.html">Modeling Topics</a></p>
</div><div class="qbsection">
<p><a href="chongqing-page.html">Chongqing Page</a></p>
<p><a href="log-in.html">Log In</a></p></div>
</div>
</body></html>