CubismRaycastable.cs 612 B

123456789101112131415161718192021222324
  1. /**
  2. * Copyright(c) Live2D Inc. All rights reserved.
  3. *
  4. * Use of this source code is governed by the Live2D Open Software license
  5. * that can be found at https://www.live2d.com/eula/live2d-open-software-license-agreement_en.html.
  6. */
  7. using UnityEngine;
  8. namespace Live2D.Cubism.Framework.Raycasting
  9. {
  10. /// <summary>
  11. /// Allows raycasting against <see cref="Core.CubismDrawable"/>s.
  12. /// </summary>
  13. public sealed class CubismRaycastable : MonoBehaviour
  14. {
  15. /// <summary>
  16. /// The precision.
  17. /// </summary>
  18. public CubismRaycastablePrecision Precision;
  19. }
  20. }