GamePlay Record and save it to disk

Hi to all,

I am developing a Unity 3D game. I need to record play screen(Android) using unity camera and save it to local disk(Android/IOS) .

Please help me find the solution.

Do you want the recording to be played back as an .mp4 or as a custom file read by your program?

The first would require knowledge of how to encode to mp4, which I don’t know. The other one you would record the state of everything you need to know to play it back such as GameObject positions. When you read the file you should load and set GameObject positions and whatever else you need to record based on the file.

Those are all I know.