Gameplay Cameras Plugin command not recognized?

Hi! I have got a problem with the following command:
DDCVar.NewGameplayCameraSystem.Enable

image

Being not recognized by the engine. I’ve found it in the Unreal Engine animation template on Fab, link:
https://www.fab.com/listings/880e319a-a59e-4ed2-b268-b32dac7fa016

I have the Gameplay Cameras plugin turned on, but it always returns false when called with “Get Console Variable Bool Value” (because it’s not recognized, so obviously, it returns false.

Why is the command not recognized, and how can I fix it? Maybe my assumption that it comes from the Gameplay Cameras plugin is incorrect, and I am missing something, or there is a tick that I have not checked.

Help would be greatly appreciated.

Have you found an answer? I have the same problem here.

+CVarsArray=Type=CVarBool,Name="DDCVar.NewGameplayCameraSystem.Enable",ToolTip="",DefaultValueFloat=0.000000,DefaultValueInt=0,DefaultValueBool=True)

It’s because it’s a custom command they created for the project. If you want to learn how to setup the Gameplay Cameras, refer to the Gameplay Camera System Quick Start

Although, even if you follow it exactly, it probably isn’t going to work since it’s broken and ill-documented. So you should only use it if you’re willing to figure it out yourself or wait for epic to move it to “beta” stage at least.

Add the line DDCVar.NewGameplayCameraSystem.Enable to $project/Config/DefaultEngine.ini.

[/Script/Engine.DataDrivenConsoleVariableSettings]
+CVarsArray=(Type=CVarBool,Name="DDCVar.NewGameplayCameraSystem.Enable",ToolTip="",DefaultValueFloat=0.000000,DefaultValueInt=0,DefaultValueBool=True)

I’m currently running into an issue where collision doesn’t work when using the gameplay camera in the city sample.

Continuing the discussion from Gameplay Cameras Plugin command not recognized?:

I found where the problem lies, copy the project settings from animation sample, exactly from:

You can right click and copy CVars Array and paste it in your project, it solves all problems (there are variables that are missing in the project)
I hope I helped

2 Likes