Playmaker Forum

PlayMaker Help & Tips => PlayMaker Help => Topic started by: BredDev on August 10, 2020, 05:54:17 AM

Title: Trying to add C4D object with FSM, MonoBehaviour Prefab error wont make it work.
Post by: BredDev on August 10, 2020, 05:54:17 AM
Hey everyone, first time poster here.

Bought Playmaker last week and loving it so far, I'm trying to import a Cinema 4D object into my scene. It has velocity and a get axis so when it hits the plane, it should just be able to move left and right...but it falls straight thru.

https://imgur.com/a/ZyoQaQK

I've copied the states into Unity objects and it works fine, only with an FBX file it doesn't want to collide with anything. I've even tried adding terrain collider and mesh collider tags. Nothings working and I think it has something to do with that Prefab Override message.

Anyone experience this? ???

Thanks
Title: Re: Trying to add C4D object with FSM, MonoBehaviour Prefab error wont make it work.
Post by: djaydino on August 10, 2020, 06:56:12 AM
Hi.
The object needs a collider.

You can add the component directly or make a empty object as parent and add the collider there.

It also might need a Rigidbody if it does not have one yet.
Title: Re: Trying to add C4D object with FSM, MonoBehaviour Prefab error wont make it work.
Post by: BredDev on August 10, 2020, 07:04:39 AM
Hi.
The object needs a collider.

You can add the component directly or make a empty object as parent and add the collider there.

It also might need a Rigidbody if it does not have one yet.

Awesome, it works now, thanks djaydino!