Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
KVELLER

Decal inheritance in DECORATE?

Recommended Posts

So I made a new actor that inherits from the shotgun, but I realized that it lost its decals in the process. I have no intentions of modifying the weapon's behaviour, so I was wondering if there's a way to add the decals without having to rewrite the Fire state.

Share this post


Link to post

Go into the weapon's DECORATE definition and add "Decal BulletChip".

Like this:

actor NewSuperShotgun : SuperShotgun replaces SuperShotgun
{
 Decal BulletChip
}

Custom weapons inheriting from the Weapon class directly function the same way.

actor DualBerettas : Weapon 5010
{
 Decal "BulletChip"
}

 

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×