Tell me more ×
Game Development Stack Exchange is a question and answer site for professional and independent game developers. It's 100% free, no registration required.

In the editor, we can place a StaticMesh, right-click it, select "Convert" and do "Convert to KActor".

I have a subclass of KActor:

class SubclassedKActor extends KActor
    placeable;

var(PowerEnablers) bool m_bEnableChaos;
var(PowerEnablers) bool m_bEnableCreate;
var(PowerEnablers) bool m_bEnableForcePush;
var(PowerEnablers) bool m_bEnableVortex;

DefaultProperties
{
    m_bEnableCreate=true;
    m_bEnableChaos=true;
    m_bEnableForcePush=true;
    m_bEnableVortex=true;
}

I want to be able to place a StaticMesh, right-click Convert and be able to select "Convert to SubclassedKActor". I have not been able to find out what populates the Convert menu.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.