How to prevent an Inventory to disappear when crushed?
-
- Godlike
- Posts: 1155
- Joined: Mon Aug 31, 2015 10:31 pm
How to prevent an Inventory to disappear when crushed?
I just noticed weapon pickups disappear when a mover crushes them, how can I prevent this from happening?
"Your stuff is known to be buggy and unfinished/not properly tested"
-
- Godlike
- Posts: 2000
- Joined: Fri Sep 25, 2015 9:01 pm
- Location: moved without proper hashing
Re: How to prevent an Inventory to disappear when crushed?
See code of mover (I guess that Inventory's owner is None):PrinceOfFunky wrote:I just noticed weapon pickups disappear when a mover crushes them, how can I prevent this from happening?
Code: Select all
// Return true to abort, false to continue.
function bool EncroachingOn( actor Other ) {
...
if ( Other.IsA('Fragment') || (Other.IsA('Inventory') && (Other.Owner == None)) )
{
Other.Destroy();
return false;
}
...
"Multiple exclamation marks," he went on, shaking his head, "are a sure sign of a diseased mind." --Terry Pratchett
-
- Godlike
- Posts: 7656
- Joined: Thu Jun 30, 2011 8:12 pm
- Personal rank: God of Fudge
- Location: Palo Alto, CA
Re: How to prevent an Inventory to disappear when crushed?
Before you get crushed, throw all your weapons away!
http://unreal-games.livejournal.com/

Smilies · viewtopic.php?f=8&t=13758medor wrote:Replace Skaarj with EvilGrins
-
- Godlike
- Posts: 1827
- Joined: Sun Mar 04, 2012 6:47 pm
Re: How to prevent an Inventory to disappear when crushed?
Tossed weapons should have bCollideWorld set to false.
The right question is: how you'll set that var at the right time?
The right question is: how you'll set that var at the right time?
-
- Godlike
- Posts: 1155
- Joined: Mon Aug 31, 2015 10:31 pm
Re: How to prevent an Inventory to disappear when crushed?
I'm not talking about Weapons only, and not only about tossed weapons, a Mover is an Actor, so the problem is bCollideActor, which is needed if you want a pawn to pick that inventory up.Higor wrote:Tossed weapons should have bCollideWorld set to false.
The right question is: how you'll set that var at the right time?
"Your stuff is known to be buggy and unfinished/not properly tested"