(Solved) Which is better, Character Or Pawn Class?

Hello everyone,

(Please note that I will be asking a beginner question)

I am planning to design a video game where the Player takes control of a Giant Character, such as ‘Giant Robot’, ‘Giant Monster’, and ‘Giant Alien’. These Giants would be able to pick up human characters and interact with it for resources by collecting or eating them.

I would like to know which class would be best to use for the AI tiny humans. A Character Class or a Pawn Class? Also, explain why this Class is better to use than the other one?

Thanks in advanced,

Kyle

A Character is basically a Pawn with a CharacterMovementComponent (that allows jumping, swimming, etc.) so if your character needs to move (i.e. the player) you should probably use a Character Class.

They should be an AICharacter class actually. Honestly i haven’t really used something in UE4 that is simply a Pawn.

Ah, I see, well thank you for informing that information.

I normally create my AI’s by making a Character Class for them.

What about the AI Tiny Humans?

They will be moving away from the Player, does the AI Tiny Humans will be a Character or Pawn class?