onTransition.I 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // Filename: onTransition.I
  2. // Created by: drose (22Mar00)
  3. //
  4. ////////////////////////////////////////////////////////////////////
  5. //
  6. // PANDA 3D SOFTWARE
  7. // Copyright (c) 2001, Disney Enterprises, Inc. All rights reserved
  8. //
  9. // All use of this software is subject to the terms of the Panda 3d
  10. // Software license. You should have received a copy of this license
  11. // along with this source code; you will also find a current copy of
  12. // the license at http://www.panda3d.org/license.txt .
  13. //
  14. // To contact the maintainers of this program write to
  15. // [email protected] .
  16. //
  17. ////////////////////////////////////////////////////////////////////
  18. ////////////////////////////////////////////////////////////////////
  19. // Function: OnTransition::Constructor
  20. // Access: Public
  21. // Description:
  22. ////////////////////////////////////////////////////////////////////
  23. INLINE_GRAPH OnTransition::
  24. OnTransition() {
  25. }
  26. ////////////////////////////////////////////////////////////////////
  27. // Function: OnTransition::Copy Constructor
  28. // Access: Public
  29. // Description:
  30. ////////////////////////////////////////////////////////////////////
  31. INLINE_GRAPH OnTransition::
  32. OnTransition(const OnTransition &copy) :
  33. NodeTransition(copy)
  34. {
  35. }
  36. ////////////////////////////////////////////////////////////////////
  37. // Function: OnTransition::Copy Assignment Operator
  38. // Access: Public
  39. // Description:
  40. ////////////////////////////////////////////////////////////////////
  41. INLINE_GRAPH void OnTransition::
  42. operator = (const OnTransition &copy) {
  43. NodeTransition::operator = (copy);
  44. }