123456789101112131415161718 |
- using System;
- using kt.Utility;
- namespace kt.Physics
- {
- [Serializable]
- public class NativePlaneColliderStatus : NativeColliderStatus
- {
- public NativePlaneColliderStatus()
- {
- this.colliderType = NativeColliderStatus.ColliderType.Plane;
- }
- public MathUtility.VectorType direction = MathUtility.VectorType.Y;
- public bool isDirectionInverse;
- }
- }
|