Skip to content

Commit b9f0c00

Browse files
committed
Fixing protection level
1 parent 8b60580 commit b9f0c00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/MRTK/SDK/Features/Utilities/ConstraintExecOrderComparer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ internal class ConstraintExecOrderComparer : IComparer<TransformConstraint>
1919
/// Returns > 0 if y should be executed first.
2020
/// Returns = 0 if they are of equivalent execution priority.
2121
/// </returns>
22-
internal virtual int Compare(TransformConstraint x, TransformConstraint y)
22+
public virtual int Compare(TransformConstraint x, TransformConstraint y)
2323
{
2424
return x.ExecutionPriority - y.ExecutionPriority;
2525
}

0 commit comments

Comments
 (0)