You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
466 B
20 lines
466 B
using System.Collections; |
|
using System.Collections.Generic; |
|
using UnityEngine; |
|
using UnityEditor; |
|
|
|
[CustomEditor(typeof(TiltCamera))] |
|
public class TiltCameraEditor : Editor |
|
{ |
|
public override void OnInspectorGUI() |
|
{ |
|
DrawDefaultInspector(); |
|
GUILayout.Space(10); |
|
|
|
TiltCamera script = target as TiltCamera; |
|
if (GUILayout.Button($"Shake")) |
|
{ |
|
script.Shaking(script.shakePower, script.time); |
|
} |
|
} |
|
}
|
|
|