Use the "Player" variable multiple times

Hi,

I’m using the loginpro and photon pun 2 assets, but the problem is that both assets are using the player variable which gives me an error. Now my question, is there a solution to use the variable for both assets?

Variable? Do you mean class? Put one of them under a namespace or rename them

Hello, no if they are in the same namespace. usually assets came inside namespace for not having to face this issue, if this is the case you can put using NAMEOFNAMESPACE; for using the class in that specific namespace. or if you maybe need to acess both classes from one script rather than calling them player you can create them using NAMESPACE1.Player myPlayerFromPhotom; NAMESPACE2.Player myPlayerFromThOther; if they are in the same namespace just put them inside a namespace yourself.