Skip to content
This repository has been archived by the owner on Nov 21, 2023. It is now read-only.

Commit

Permalink
fix: apply transform and rigidbody by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Hertzole committed Mar 19, 2023
1 parent c0a5470 commit 640a07b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Packages/se.hertzole.ale/Runtime/Settings/ALESettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ public class ALESettings : RuntimeProjectSettings<ALESettings>
{
#region Wrappers
[SerializeField]
private bool applyTransformWrapper;
private bool applyTransformWrapper = true;
[SerializeField]
private bool applyRigidbodyWrapper;
private bool applyRigidbodyWrapper = true;
#endregion

public bool ApplyTransformWrapper { get { return applyTransformWrapper; } set { applyTransformWrapper = value; } }
Expand Down

0 comments on commit 640a07b

Please sign in to comment.