Skip to content

Commit

Permalink
fix(SpringLever): rename script to conform with naming convention
Browse files Browse the repository at this point in the history
The `VRTK_Spring_Lever` script has been renamed to `VRTK_SpringLever`
removing the additional underscore as this does not adhere to the
naming convention used by other scripts.
  • Loading branch information
thestonefox committed Jan 1, 2017
1 parent be6b0d0 commit 58e93a8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Expand Up @@ -9,7 +9,7 @@ namespace VRTK
/// <remarks>
/// The script will instantiate the required Rigidbody, Interactable and HingeJoint components automatically in case they do not exist yet. The joint is very tricky to setup automatically though and will only work in straight forward cases. If there are any issues, then create the HingeJoint component manually and configure it as needed.
/// </remarks>
public class VRTK_Spring_Lever : VRTK_Lever
public class VRTK_SpringLever : VRTK_Lever
{
[Tooltip("Strength of the spring force that will be applied toward either end of the lever's range.")]
public float springStrength = 10;
Expand Down
6 changes: 3 additions & 3 deletions DOCUMENTATION.md
Expand Up @@ -3198,7 +3198,7 @@ The Climbable Grab Attach script is used to mark the object as a climbable inter

# Secondary Controller Grab Actions (VRTK/Scripts/Interactions/SecondaryControllerGrabActions)

This directory contains scripts that are used to provide different actions when a secondary controller grabs a grabbed obejct.
This directory contains scripts that are used to provide different actions when a secondary controller grabs a grabbed object.

* [Base Grab Action](#base-grab-action-vrtk_basegrabaction)
* [Swap Controller Grab Action](#swap-controller-grab-action-vrtk_swapcontrollergrabaction)
Expand Down Expand Up @@ -4123,7 +4123,7 @@ All 3D controls extend the `VRTK_Control` abstract class which provides common m
* [Drawer](#drawer-vrtk_drawer)
* [Knob](#knob-vrtk_knob)
* [Lever](#lever-vrtk_lever)
* [Spring Lever](#spring-lever-vrtk_spring_lever)
* [Spring Lever](#spring-lever-vrtk_springlever)
* [Slider](#slider-vrtk_slider)
* [Content Handler](#content-handler-vrtk_contenthandler)

Expand Down Expand Up @@ -4352,7 +4352,7 @@ The script will instantiate the required Rigidbody, Interactable and HingeJoint

---

## Spring Lever (VRTK_Spring_Lever)
## Spring Lever (VRTK_SpringLever)
> extends [VRTK_Lever](#lever-vrtk_lever)
### Overview
Expand Down

0 comments on commit 58e93a8

Please sign in to comment.