Frictional Games Forum (read-only)

Full Version: Turning Pickup-able items to static/non-pickup items
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello!

I would like to ask if there is a way to turn a pickup-able object such as the lantern or the bucket into a static, purely decorative object the player cannot interact with.

Thank you very much!
(10-28-2012, 11:50 AM)bleakraven Wrote: [ -> ]Hello!

I would like to ask if there is a way to turn a pickup-able object such as the lantern or the bucket into a static, purely decorative object the player cannot interact with.

Thank you very much!
Yes, it's possible. Follow these steps:

Make a new folder with the desired static item.
Copy everything to the new folder except the .ent file.
Now, in the model editor, import the .dae and, in User defined variables, make it Static.

This should work.
or use scripting

SetEntityInteractionDisabled(string& asName, bool abDisabled);
Thank you both very much! It works now. Smile