This page has not been translated yet. Showing the default language version.
Shuffle Declarations Plugin
メンバー宣言をシャッフルするプラグイン
ShuffleDeclarations (Plana.Composition.ShuffleDeclarations) plugin shuffles member declarations of class.
Example
namespace AudioLink
{
public class AudioLinkControllerHandle : UdonSharpBehaviour
{
public ParentConstraint parentConstraint;
private ParentConstraint selfConstraint;
public void Start()
{
// ...
}
public override void OnPickup()
{
// ...
}
public override void OnDrop()
{
// ...
}
}
}
#endif
namespace AudioLink
{
public class AudioLinkControllerHandle : UdonSharpBehaviour
{
public override void OnPickup()
{
// ...
}
public override void OnDrop()
{
// ...
}
public ParentConstraint parentConstraint;
private ParentConstraint selfConstraint;
public void Start()
{
// ...
}
}
}
Options
Options:
--shuffle-declarations use shuffle-declarations [default: False]
Comments
This plugin does not support annotation comments.