mirror of
https://github.com/BlackMATov/unity-iso-tools.git
synced 2025-12-16 22:16:55 +07:00
PlayMaker: IsoTools.Physics group
This commit is contained in:
@@ -3,7 +3,7 @@ using HutongGames.PlayMaker;
|
|||||||
using IsoTools.PlayMaker.Internal;
|
using IsoTools.PlayMaker.Internal;
|
||||||
|
|
||||||
namespace IsoTools.PlayMaker.Actions {
|
namespace IsoTools.PlayMaker.Actions {
|
||||||
[ActionCategory("IsoTools")]
|
[ActionCategory("IsoTools.Physics")]
|
||||||
[HutongGames.PlayMaker.Tooltip(
|
[HutongGames.PlayMaker.Tooltip(
|
||||||
"Applies a force to a IsoRigidbody that simulates explosion effects. " +
|
"Applies a force to a IsoRigidbody that simulates explosion effects. " +
|
||||||
"The explosion force will fall off linearly with distance.")]
|
"The explosion force will fall off linearly with distance.")]
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ using HutongGames.PlayMaker;
|
|||||||
using IsoTools.PlayMaker.Internal;
|
using IsoTools.PlayMaker.Internal;
|
||||||
|
|
||||||
namespace IsoTools.PlayMaker.Actions {
|
namespace IsoTools.PlayMaker.Actions {
|
||||||
[ActionCategory("IsoTools")]
|
[ActionCategory("IsoTools.Physics")]
|
||||||
[HutongGames.PlayMaker.Tooltip(
|
[HutongGames.PlayMaker.Tooltip(
|
||||||
"Adds a force to a IsoRigidbody. " +
|
"Adds a force to a IsoRigidbody. " +
|
||||||
"Use Vector3 variable and/or Float variables for each axis.")]
|
"Use Vector3 variable and/or Float variables for each axis.")]
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ using HutongGames.PlayMaker;
|
|||||||
using IsoTools.PlayMaker.Internal;
|
using IsoTools.PlayMaker.Internal;
|
||||||
|
|
||||||
namespace IsoTools.PlayMaker.Actions {
|
namespace IsoTools.PlayMaker.Actions {
|
||||||
[ActionCategory("IsoTools")]
|
[ActionCategory("IsoTools.Physics")]
|
||||||
[HutongGames.PlayMaker.Tooltip(
|
[HutongGames.PlayMaker.Tooltip(
|
||||||
"Gets the Speed of a IsoRigidbody and stores it in a Float Variable.")]
|
"Gets the Speed of a IsoRigidbody and stores it in a Float Variable.")]
|
||||||
public class IsoGetSpeed : IsoComponentAction<IsoRigidbody> {
|
public class IsoGetSpeed : IsoComponentAction<IsoRigidbody> {
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ using HutongGames.PlayMaker;
|
|||||||
using IsoTools.PlayMaker.Internal;
|
using IsoTools.PlayMaker.Internal;
|
||||||
|
|
||||||
namespace IsoTools.PlayMaker.Actions {
|
namespace IsoTools.PlayMaker.Actions {
|
||||||
[ActionCategory("IsoTools")]
|
[ActionCategory("IsoTools.Physics")]
|
||||||
[HutongGames.PlayMaker.Tooltip(
|
[HutongGames.PlayMaker.Tooltip(
|
||||||
"Gets the Velocity of a IsoRigidbody and stores it " +
|
"Gets the Velocity of a IsoRigidbody and stores it " +
|
||||||
"in a Vector3 Variable or each Axis in a Float Variable")]
|
"in a Vector3 Variable or each Axis in a Float Variable")]
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ using HutongGames.PlayMaker;
|
|||||||
using IsoTools.PlayMaker.Internal;
|
using IsoTools.PlayMaker.Internal;
|
||||||
|
|
||||||
namespace IsoTools.PlayMaker.Actions {
|
namespace IsoTools.PlayMaker.Actions {
|
||||||
[ActionCategory("IsoTools")]
|
[ActionCategory("IsoTools.Physics")]
|
||||||
[HutongGames.PlayMaker.Tooltip(
|
[HutongGames.PlayMaker.Tooltip(
|
||||||
"Sets the Velocity of a IsoRigidbody. " +
|
"Sets the Velocity of a IsoRigidbody. " +
|
||||||
"To leave any axis unchanged, set variable to 'None'.")]
|
"To leave any axis unchanged, set variable to 'None'.")]
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ namespace IsoTools.PlayMaker.Events {
|
|||||||
IsoCollisionEnter,
|
IsoCollisionEnter,
|
||||||
IsoCollisionExit
|
IsoCollisionExit
|
||||||
}
|
}
|
||||||
[ActionCategory("IsoTools")]
|
[ActionCategory("IsoTools.Physics")]
|
||||||
[HutongGames.PlayMaker.Tooltip(
|
[HutongGames.PlayMaker.Tooltip(
|
||||||
"Detect physics collision events.")]
|
"Detect physics collision events.")]
|
||||||
public class IsoCollisionEvent : IsoComponentAction<IsoObject> {
|
public class IsoCollisionEvent : IsoComponentAction<IsoObject> {
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ namespace IsoTools.PlayMaker.Events {
|
|||||||
IsoTriggerEnter,
|
IsoTriggerEnter,
|
||||||
IsoTriggerExit
|
IsoTriggerExit
|
||||||
}
|
}
|
||||||
[ActionCategory("IsoTools")]
|
[ActionCategory("IsoTools.Physics")]
|
||||||
[HutongGames.PlayMaker.Tooltip(
|
[HutongGames.PlayMaker.Tooltip(
|
||||||
"Detect physics trigger events.")]
|
"Detect physics trigger events.")]
|
||||||
public class IsoTriggerEvent : IsoComponentAction<IsoObject> {
|
public class IsoTriggerEvent : IsoComponentAction<IsoObject> {
|
||||||
|
|||||||
Reference in New Issue
Block a user