示例#1
0
 /// <summary>
 /// creates the action with a number of waves, the waves amplitude, the grid size and the duration
 /// </summary>
 public static CCWavesTiles3D Create(int wav, float amp, CCGridSize gridSize, float duration)
 {
     var pAction = new CCWavesTiles3D();
     pAction.InitWithWaves(wav, amp, gridSize, duration);
     return pAction;
 }