Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - jasperjon

Pages: [1]
1
TNet 3 Support / Re: if(TNManager.isThisMyObject) error message
« on: October 31, 2016, 10:51:22 AM »
So, is this correct?

  1. using TNet;
  2.  
  3. public class GamePlayer : TNBehaviour
  4. {
  5.     static public GamePlayer instance;
  6.     void Start()
  7.     {
  8.         if (tno.isMine)
  9.             instance = this;
  10.     }
  11.    
  12. }

Pages: [1]