Access rights to clone cesium for unity

Hello!,

I am following the readme on building Cesium, and am coming to the part where I need to clone. the repository with git clone --recurse-submodules git@github.com:CesiumGS/cesium-unity-samples.git

However I do get an error that I don’t have the correct access rights to do this. I am new at git, is anyone able to help me out? Thank you!

Cesium for Unity itself doesn’t require any particular authorization, but GitHub does require authentication for access via SSH. You can either setup your system to connect to GitHub via SSH:

Or you can instead clone Cesium for Unity via HTTPS (which allows anonymous access) instead of SSH. In other words:

git clone --recurse-submodules https://github.com/CesiumGS/cesium-unity-samples.git

I did end up getting it through https thank you!