Author Topic: How to 'disable' FixedUpdate on clients?  (Read 1770 times)

Shifty Geezer

  • Full Member
  • ***
  • Thank You
  • -Given: 7
  • -Receive: 9
  • Posts: 226
    • View Profile
How to 'disable' FixedUpdate on clients?
« on: November 09, 2015, 05:13:04 PM »
If I use  if(TNManager.isHosting){} in FixedUpdate, it activates a few times before the channel is properly joined. In Start I can stall using IENumerator, but how should I handle FixedUpdate? Just a Ready flag called after isJoiningChannel is ended?

ArenMook

  • Administrator
  • Hero Member
  • *****
  • Thank You
  • -Given: 337
  • -Receive: 1171
  • Posts: 22,128
  • Toronto, Canada
    • View Profile
Re: How to 'disable' FixedUpdate on clients?
« Reply #1 on: November 10, 2015, 08:30:59 PM »
if (TNManager.isJoiningChannel) return;