LayoutInfo.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #region File Description
  2. //-----------------------------------------------------------------------------
  3. // LayoutInfo.cs
  4. //
  5. // Microsoft XNA Community Game Platform
  6. // Copyright (C) Microsoft Corporation. All rights reserved.
  7. //-----------------------------------------------------------------------------
  8. #endregion
  9. #region Using Statements
  10. using System;
  11. #endregion
  12. namespace MovipaLibrary
  13. {
  14. /// <summary>
  15. /// This class manages animation information of Layout.
  16. /// The asset name for SceneData and the sequence name to be used
  17. /// are managed in this class.
  18. ///
  19. /// Layoutのアニメーション情報を持ちます。
  20. /// SceneDataへのアセット名と、使用するシーケンス名があります。
  21. /// </summary>
  22. public class LayoutInfo : AnimationInfo
  23. {
  24. #region Fields
  25. private string sceneDataAsset;
  26. private string sequence;
  27. #endregion
  28. #region Properties
  29. /// <summary>
  30. /// Obtains or sets the asset name for the scene data.
  31. ///
  32. /// シーンデータのアセット名を取得または設定します。
  33. /// </summary>
  34. public string SceneDataAsset
  35. {
  36. get { return sceneDataAsset; }
  37. set { sceneDataAsset = value; }
  38. }
  39. /// <summary>
  40. /// Obtains or sets the sequence name.
  41. ///
  42. /// シーケンス名を取得または設定します。
  43. /// </summary>
  44. public string Sequence
  45. {
  46. get { return sequence; }
  47. set { sequence = value; }
  48. }
  49. #endregion
  50. }
  51. }