The Spinning Globe. How to create in Adobe After Effects.

This video shows how to create a spinning globe animation in Adobe After Effects. You can watch how the spinning globe was implemented in the logo of the Democratic Labor Party:    • Democratic Labor Party Intro  " You can save time and buy the template on eBay: https://www.ebay.com/itm/The-Spinning... Loop Expression: pingPong = false; try{ timeStart = thisProperty.key(1).time; duration = thisProperty.key(thisProperty.numKeys).time - timeStart; quant = Math.floor((time - timeStart) / duration); if (quant //// HERE SHOULD BE "LESS THAN" SIGN WICH IS NOT ALLOWED TO BE TYPED IN //// 0) quant = 0 if (quant % 2 == 1 && pingPong == true){ t = 2 * timeStart + (quant+1) * duration - time; } else { t = time-quant*duration; } } catch(e) { t = time; } thisProperty.valueAtTime(t);