Skip to content

Commit

Permalink
- Plugin no longer causes other Project Settings to be grouped under …
Browse files Browse the repository at this point in the history
…a root 'Project' button

- Made BezierWalker.extraDataLerpAsQuaternionFunction public
  • Loading branch information
yasirkula committed Jul 5, 2021
1 parent 218365f commit e296e63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Plugins/BezierSolution/Editor/BezierSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ public static bool VisualizeExtraDataAsFrustum
[SettingsProvider]
public static SettingsProvider CreatePreferencesGUI()
{
return new SettingsProvider( "yasirkula/Bezier Solution", SettingsScope.Project )
return new SettingsProvider( "Project/yasirkula/Bezier Solution", SettingsScope.Project )
{
guiHandler = ( searchContext ) => PreferencesGUI(),
keywords = new System.Collections.Generic.HashSet<string>() { "Bezier", "Spline", "Point", "Normals", "Color", "Size" }
Expand Down
2 changes: 1 addition & 1 deletion Plugins/BezierSolution/Utilities/BezierWalker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public abstract class BezierWalker : MonoBehaviour

public abstract void Execute( float deltaTime );

protected static readonly ExtraDataLerpFunction extraDataLerpAsQuaternionFunction = InterpolateExtraDataAsQuaternion;
public static readonly ExtraDataLerpFunction extraDataLerpAsQuaternionFunction = InterpolateExtraDataAsQuaternion;

private static BezierPoint.ExtraData InterpolateExtraDataAsQuaternion( BezierPoint.ExtraData data1, BezierPoint.ExtraData data2, float normalizedT )
{
Expand Down

0 comments on commit e296e63

Please sign in to comment.