Hello!
I was wondering if there is a built in way to allow save-game screenshots on Android and Playstation 4. I do however suspect there is none since they are explicitly if-deffed out in the beginning of "SaveFileHandler_SystemFile.cs".
This leads me to my second question which may help as I try and add this functionality manually: Why have this functionality been explicitly disabled on these platforms?
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
Safety and security, essentially. On Android, it's a question of file access. I suspect this restriction could actually be lifted, but it would also mean allow external storage permissions.
Feel free to try it - you can do so by removing the "UNITY_ANDROID" platform check in the first line of the script file you mention.
As for PS4 - that's not a platform that AC supports. Again, it may be possible to allow it - but it would involve making modification to the save file handler. It's recommended to implement a custom handler for unsupported platforms - see the Manual's "Custom save formats and handling" chapter.