Fixed Export Errors
This commit is contained in:
parent
8982e738bb
commit
7df1915b7b
|
|
@ -6,292 +6,296 @@ using System.Globalization;
|
|||
using System;
|
||||
using System.Data;
|
||||
|
||||
#if TOOLS
|
||||
|
||||
#if ! ROKOJORI_ACTION_CORE
|
||||
using Rokojori.Tools;
|
||||
#endif
|
||||
|
||||
namespace Rokojori
|
||||
namespace Rokojori;
|
||||
|
||||
|
||||
|
||||
#if ROKOJORI_ACTION_CORE
|
||||
[Tool][RokojoriActionCoreExport]
|
||||
public partial class RokojoriPlugin:EditorPlugin
|
||||
{
|
||||
#if ! TOOLS
|
||||
#if ROKOJORI_ACTION_CORE_GD
|
||||
public static readonly string _path = "res://addons/rokojori_action_code_gd";
|
||||
#else
|
||||
public static readonly string _path = "res://addons/rokojori_action_code_cs";
|
||||
#endif
|
||||
|
||||
#if ROKOJORI_ACTION_CORE
|
||||
[Tool][RokojoriActionCoreExport]
|
||||
public partial class RokojoriPlugin:EditorPlugin
|
||||
{
|
||||
#if ROKOJORI_ACTION_CORE_GD
|
||||
public static readonly string _path = "res://addons/rokojori_action_code_gd";
|
||||
#else
|
||||
public static readonly string _path = "res://addons/rokojori_action_code_cs";
|
||||
#endif
|
||||
|
||||
public static string Path( string path )
|
||||
{
|
||||
return RokojoriPlugin._path + "/" + path;
|
||||
}
|
||||
|
||||
public static string GlobalizedPath( string path )
|
||||
{
|
||||
return ProjectSettings.GlobalizePath( Path( path ) );
|
||||
}
|
||||
|
||||
static readonly string RokojoriRootAutoLoad = "RokojoriRootAutoLoad";
|
||||
|
||||
#if ROKOJORI_ACTION_CORE_GD
|
||||
public static readonly string RokojoriRootAutoLoadPath = Path( "Runtime/Godot/RJ_Root.cs" );
|
||||
#else
|
||||
public static readonly string RokojoriRootAutoLoadPath = Path( "Runtime/Godot/Root.cs" );
|
||||
#endif
|
||||
|
||||
|
||||
public override void _EnablePlugin()
|
||||
{
|
||||
AddAutoloadSingleton( RokojoriRootAutoLoad, RokojoriRootAutoLoadPath );
|
||||
}
|
||||
|
||||
public override void _DisablePlugin()
|
||||
{
|
||||
RemoveAutoloadSingleton( RokojoriRootAutoLoad );
|
||||
}
|
||||
|
||||
}
|
||||
#endif
|
||||
|
||||
#elif ! ROKOJORI_ACTION_CORE
|
||||
[Tool]
|
||||
public partial class RokojoriPlugin: EditorPlugin
|
||||
public static string Path( string path )
|
||||
{
|
||||
GizmoDrawerPlugin gizmoDrawerPlugin = new GizmoDrawerPlugin();
|
||||
GodotEditorInspectorTools inspectorTools = new GodotEditorInspectorTools();
|
||||
return RokojoriPlugin._path + "/" + path;
|
||||
}
|
||||
|
||||
public static readonly string path = "res://addons/rokojori_action_library";
|
||||
public static string GlobalizedPath( string path )
|
||||
{
|
||||
return ProjectSettings.GlobalizePath( Path( path ) );
|
||||
}
|
||||
|
||||
public static string Path( string path )
|
||||
static readonly string RokojoriRootAutoLoad = "RokojoriRootAutoLoad";
|
||||
|
||||
#if ROKOJORI_ACTION_CORE_GD
|
||||
public static readonly string RokojoriRootAutoLoadPath = Path( "Runtime/Godot/RJ_Root.cs" );
|
||||
#else
|
||||
public static readonly string RokojoriRootAutoLoadPath = Path( "Runtime/Godot/Root.cs" );
|
||||
#endif
|
||||
|
||||
|
||||
public override void _EnablePlugin()
|
||||
{
|
||||
AddAutoloadSingleton( RokojoriRootAutoLoad, RokojoriRootAutoLoadPath );
|
||||
}
|
||||
|
||||
public override void _DisablePlugin()
|
||||
{
|
||||
RemoveAutoloadSingleton( RokojoriRootAutoLoad );
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
#elif ! ROKOJORI_ACTION_CORE
|
||||
[Tool]
|
||||
public partial class RokojoriPlugin: EditorPlugin
|
||||
{
|
||||
GizmoDrawerPlugin gizmoDrawerPlugin = new GizmoDrawerPlugin();
|
||||
GodotEditorInspectorTools inspectorTools = new GodotEditorInspectorTools();
|
||||
|
||||
public static readonly string path = "res://addons/rokojori_action_library";
|
||||
|
||||
public static string Path( string path )
|
||||
{
|
||||
return RokojoriPlugin.path + "/" + path;
|
||||
}
|
||||
|
||||
public static string GlobalizedPath( string path )
|
||||
{
|
||||
return ProjectSettings.GlobalizePath( Path( path ) );
|
||||
}
|
||||
|
||||
static readonly string RokojoriRootAutoLoad = "RokojoriRootAutoLoad";
|
||||
static readonly string RokojoriRootAutoLoadPath = Path( "Runtime/Godot/Root.cs" );
|
||||
static readonly string RokojoriProjectInternalPath = "res://.rokojori";
|
||||
static readonly string RokojoriSettingsPath = "res://.rokojori/settings";
|
||||
static readonly string RokojoriCachePath = "res://_rokojori-cache";
|
||||
|
||||
// static RokojoriPlugin _instance;
|
||||
// public static RokojoriPlugin Get()
|
||||
// {
|
||||
// return _instance;
|
||||
// }
|
||||
|
||||
public override void _EnablePlugin()
|
||||
{
|
||||
this.LogInfo();
|
||||
AddAutoloadSingleton( RokojoriRootAutoLoad, RokojoriRootAutoLoadPath );
|
||||
|
||||
|
||||
EnsureHiddenProjectPath( RokojoriProjectInternalPath );
|
||||
EnsureHiddenProjectPath( RokojoriSettingsPath );
|
||||
EnsureHiddenProjectPath( RokojoriCachePath );
|
||||
|
||||
}
|
||||
|
||||
static string CreateTemporaryFilePath()
|
||||
{
|
||||
var directory = RokojoriCachePath + "/temp";
|
||||
|
||||
EnsureHiddenProjectPath( directory );
|
||||
var id = IDGenerator.GenerateID();
|
||||
|
||||
return directory + "/" + id;
|
||||
|
||||
}
|
||||
|
||||
public static string SaveTemporaryJSON( object json )
|
||||
{
|
||||
var path = ProjectSettings.GlobalizePath( CreateTemporaryFilePath() );
|
||||
var result = FilesSync.SaveJSON( path, json );
|
||||
|
||||
return path;
|
||||
}
|
||||
|
||||
public static string SaveTemporaryUTF8( string text )
|
||||
{
|
||||
var path = ProjectSettings.GlobalizePath( CreateTemporaryFilePath() );
|
||||
var result = FilesSync.SaveUTF8( path, text );
|
||||
|
||||
return path;
|
||||
}
|
||||
|
||||
static void EnsureHiddenProjectPath( string resPath )
|
||||
{
|
||||
var gdIgnorePath = resPath + "/.gdignore" ;
|
||||
FilesSync.EnsureDirectoryExists( ProjectSettings.GlobalizePath( resPath ) );
|
||||
|
||||
if ( ! FilesSync.FileExists( ProjectSettings.GlobalizePath( gdIgnorePath ) ) )
|
||||
{
|
||||
return RokojoriPlugin.path + "/" + path;
|
||||
}
|
||||
|
||||
public static string GlobalizedPath( string path )
|
||||
{
|
||||
return ProjectSettings.GlobalizePath( Path( path ) );
|
||||
}
|
||||
|
||||
static readonly string RokojoriRootAutoLoad = "RokojoriRootAutoLoad";
|
||||
static readonly string RokojoriRootAutoLoadPath = Path( "Runtime/Godot/Root.cs" );
|
||||
static readonly string RokojoriProjectInternalPath = "res://.rokojori";
|
||||
static readonly string RokojoriSettingsPath = "res://.rokojori/settings";
|
||||
static readonly string RokojoriCachePath = "res://.rokojori/cache";
|
||||
|
||||
// static RokojoriPlugin _instance;
|
||||
// public static RokojoriPlugin Get()
|
||||
// {
|
||||
// return _instance;
|
||||
// }
|
||||
|
||||
public override void _EnablePlugin()
|
||||
{
|
||||
this.LogInfo();
|
||||
AddAutoloadSingleton( RokojoriRootAutoLoad, RokojoriRootAutoLoadPath );
|
||||
|
||||
|
||||
EnsureHiddenProjectPath( RokojoriProjectInternalPath );
|
||||
EnsureHiddenProjectPath( RokojoriSettingsPath );
|
||||
EnsureHiddenProjectPath( RokojoriCachePath );
|
||||
|
||||
}
|
||||
|
||||
static string CreateTemporaryFilePath()
|
||||
{
|
||||
var directory = RokojoriCachePath + "/temp";
|
||||
|
||||
EnsureHiddenProjectPath( directory );
|
||||
var id = IDGenerator.GenerateID();
|
||||
|
||||
return directory + "/" + id;
|
||||
|
||||
}
|
||||
|
||||
public static string SaveTemporaryJSON( object json )
|
||||
{
|
||||
var path = ProjectSettings.GlobalizePath( CreateTemporaryFilePath() );
|
||||
var result = FilesSync.SaveJSON( path, json );
|
||||
|
||||
return path;
|
||||
}
|
||||
|
||||
public static string SaveTemporaryUTF8( string text )
|
||||
{
|
||||
var path = ProjectSettings.GlobalizePath( CreateTemporaryFilePath() );
|
||||
var result = FilesSync.SaveUTF8( path, text );
|
||||
|
||||
return path;
|
||||
}
|
||||
|
||||
static void EnsureHiddenProjectPath( string resPath )
|
||||
{
|
||||
var gdIgnorePath = resPath + "/.gdignore" ;
|
||||
FilesSync.EnsureDirectoryExists( ProjectSettings.GlobalizePath( resPath ) );
|
||||
|
||||
if ( ! FilesSync.FileExists( ProjectSettings.GlobalizePath( gdIgnorePath ) ) )
|
||||
{
|
||||
FilesSync.SaveUTF8( ProjectSettings.GlobalizePath( gdIgnorePath ), "" );
|
||||
}
|
||||
}
|
||||
|
||||
static void EnsureCachedProjectPath( string cachePath )
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
public override void _DisablePlugin()
|
||||
{
|
||||
this.LogInfo();
|
||||
RemoveAutoloadSingleton( RokojoriRootAutoLoad );
|
||||
}
|
||||
|
||||
|
||||
|
||||
public override void _EnterTree()
|
||||
{
|
||||
|
||||
EnsureHiddenProjectPath( RokojoriProjectInternalPath );
|
||||
EnsureHiddenProjectPath( RokojoriSettingsPath );
|
||||
EnsureHiddenProjectPath( RokojoriCachePath );
|
||||
|
||||
this.LogInfo();
|
||||
|
||||
AddNode3DGizmoPlugin( gizmoDrawerPlugin );
|
||||
|
||||
inspectorTools.rokojoriPlugin = this;
|
||||
inspectorTools.AddPlugins();
|
||||
}
|
||||
|
||||
public override void _ExitTree()
|
||||
{
|
||||
this.LogInfo();
|
||||
|
||||
RemoveNode3DGizmoPlugin( gizmoDrawerPlugin );
|
||||
|
||||
inspectorTools.rokojoriPlugin = this;
|
||||
inspectorTools.RemovePlugins();
|
||||
}
|
||||
|
||||
bool wasDisposed = true;
|
||||
|
||||
public RokojoriPlugin()
|
||||
{
|
||||
wasDisposed = true;
|
||||
}
|
||||
|
||||
public class MarkerData
|
||||
{
|
||||
public DateTime time;
|
||||
}
|
||||
|
||||
static readonly string markerPath = "reload-marker.json";
|
||||
|
||||
|
||||
|
||||
protected override void Dispose( bool disposing )
|
||||
{
|
||||
|
||||
var markerData = new MarkerData();
|
||||
markerData.time = DateTime.Now;
|
||||
|
||||
SaveCache( markerPath, markerData );
|
||||
}
|
||||
|
||||
float reloadDuration = 2;
|
||||
DateTimeOffset lastUpdateTime = DateTime.Now;
|
||||
DateTimeOffset lastDisposalTime = DateTime.Now;
|
||||
|
||||
public void SaveCache( string relativeCachePath, object data )
|
||||
{
|
||||
var path = RokojoriCachePath + "/" + relativeCachePath;
|
||||
|
||||
FilesSync.SaveJSON( ProjectSettings.GlobalizePath( path ), data );
|
||||
}
|
||||
|
||||
public T LoadCache<T>( string relativeCachePath ) where T:new()
|
||||
{
|
||||
var path = RokojoriCachePath + "/" + relativeCachePath;
|
||||
|
||||
return FilesSync.LoadJSON<T>( ProjectSettings.GlobalizePath( path ));
|
||||
}
|
||||
|
||||
public T LoadSettings<T>( string relativeSettingsPath ) where T:new()
|
||||
{
|
||||
var path = RokojoriSettingsPath + "/" + relativeSettingsPath;
|
||||
|
||||
return FilesSync.LoadJSON<T>( ProjectSettings.GlobalizePath( path ));
|
||||
}
|
||||
|
||||
UI editingSceneUI = null;
|
||||
UIRegion editingSceneRegion = null;
|
||||
|
||||
public override void _Process( double delta )
|
||||
{
|
||||
var editingScene = EditorInterface.Singleton.GetEditedSceneRoot();
|
||||
|
||||
if ( lastUpdateTime.HasExpired( reloadDuration ) )
|
||||
{
|
||||
lastUpdateTime = DateTime.Now;
|
||||
|
||||
var markerData = LoadCache<MarkerData>( markerPath );
|
||||
|
||||
if ( markerData != null && markerData.time != lastDisposalTime )
|
||||
{
|
||||
lastDisposalTime = markerData.time;
|
||||
|
||||
editingScene.ForEach<IAssemblyReload>( ar => ar.OnAssemblyReloaded() );
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
if ( editingScene is UIRegion region && ! ( editingScene is UI ) )
|
||||
{
|
||||
if ( editingSceneRegion != region )
|
||||
{
|
||||
if ( editingSceneUI != null )
|
||||
{
|
||||
editingSceneUI.DeleteSelf();
|
||||
editingSceneUI = null;
|
||||
}
|
||||
|
||||
editingSceneRegion = region;
|
||||
editingSceneUI = this.CreateChild<UI>();
|
||||
editingSceneUI.settings = region.uiSettings;
|
||||
|
||||
editingSceneUI.BindChildrenOf( region );
|
||||
}
|
||||
|
||||
editingSceneUI.updateMode = UI.UpdateMode.Only_Manual_Updates;
|
||||
|
||||
if ( region.reassignUI )
|
||||
{
|
||||
editingSceneUI.settings = region.uiSettings;
|
||||
region.SetUI( editingSceneUI );
|
||||
editingSceneUI.BindChildrenOf( region );
|
||||
region.reassignUI = false;
|
||||
}
|
||||
|
||||
if ( region.updateInEditor )
|
||||
{
|
||||
region.SetUI( editingSceneUI );
|
||||
editingSceneUI.BindChildrenOf( region );
|
||||
editingSceneUI.fontZoom = region.fontZoom;
|
||||
|
||||
editingSceneUI.UpdateExternal( (float)delta );
|
||||
region.Layout();
|
||||
region.computedFontSize = editingSceneUI.X_computedFontSizePixels;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
FilesSync.SaveUTF8( ProjectSettings.GlobalizePath( gdIgnorePath ), "" );
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
static void EnsureCachedProjectPath( string cachePath )
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
public override void _DisablePlugin()
|
||||
{
|
||||
this.LogInfo();
|
||||
RemoveAutoloadSingleton( RokojoriRootAutoLoad );
|
||||
}
|
||||
|
||||
|
||||
|
||||
public override void _EnterTree()
|
||||
{
|
||||
|
||||
EnsureHiddenProjectPath( RokojoriProjectInternalPath );
|
||||
EnsureHiddenProjectPath( RokojoriSettingsPath );
|
||||
EnsureHiddenProjectPath( RokojoriCachePath );
|
||||
|
||||
this.LogInfo();
|
||||
|
||||
AddNode3DGizmoPlugin( gizmoDrawerPlugin );
|
||||
|
||||
inspectorTools.rokojoriPlugin = this;
|
||||
inspectorTools.AddPlugins();
|
||||
}
|
||||
|
||||
public override void _ExitTree()
|
||||
{
|
||||
this.LogInfo();
|
||||
|
||||
RemoveNode3DGizmoPlugin( gizmoDrawerPlugin );
|
||||
|
||||
inspectorTools.rokojoriPlugin = this;
|
||||
inspectorTools.RemovePlugins();
|
||||
}
|
||||
|
||||
bool wasDisposed = true;
|
||||
|
||||
public RokojoriPlugin()
|
||||
{
|
||||
wasDisposed = true;
|
||||
}
|
||||
|
||||
public class MarkerData
|
||||
{
|
||||
public DateTime time;
|
||||
}
|
||||
|
||||
static readonly string markerPath = "reload-marker.json";
|
||||
|
||||
|
||||
|
||||
protected override void Dispose( bool disposing )
|
||||
{
|
||||
|
||||
var markerData = new MarkerData();
|
||||
markerData.time = DateTime.Now;
|
||||
|
||||
SaveCache( markerPath, markerData );
|
||||
}
|
||||
|
||||
float reloadDuration = 2;
|
||||
DateTimeOffset lastUpdateTime = DateTime.Now;
|
||||
DateTimeOffset lastDisposalTime = DateTime.Now;
|
||||
|
||||
public void SaveCache( string relativeCachePath, object data )
|
||||
{
|
||||
var path = RokojoriCachePath + "/" + relativeCachePath;
|
||||
|
||||
FilesSync.SaveJSON( ProjectSettings.GlobalizePath( path ), data );
|
||||
}
|
||||
|
||||
public T LoadCache<T>( string relativeCachePath ) where T:new()
|
||||
{
|
||||
var path = RokojoriCachePath + "/" + relativeCachePath;
|
||||
|
||||
return FilesSync.LoadJSON<T>( ProjectSettings.GlobalizePath( path ));
|
||||
}
|
||||
|
||||
public T LoadSettings<T>( string relativeSettingsPath ) where T:new()
|
||||
{
|
||||
var path = RokojoriSettingsPath + "/" + relativeSettingsPath;
|
||||
|
||||
return FilesSync.LoadJSON<T>( ProjectSettings.GlobalizePath( path ));
|
||||
}
|
||||
|
||||
UI editingSceneUI = null;
|
||||
UIRegion editingSceneRegion = null;
|
||||
|
||||
public override void _Process( double delta )
|
||||
{
|
||||
var editingScene = EditorInterface.Singleton.GetEditedSceneRoot();
|
||||
|
||||
if ( lastUpdateTime.HasExpired( reloadDuration ) )
|
||||
{
|
||||
lastUpdateTime = DateTime.Now;
|
||||
|
||||
var markerData = LoadCache<MarkerData>( markerPath );
|
||||
|
||||
if ( markerData != null && markerData.time != lastDisposalTime )
|
||||
{
|
||||
lastDisposalTime = markerData.time;
|
||||
|
||||
editingScene.ForEach<IAssemblyReload>( ar => ar.OnAssemblyReloaded() );
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
if ( editingScene is UIRegion region && ! ( editingScene is UI ) )
|
||||
{
|
||||
if ( editingSceneRegion != region )
|
||||
{
|
||||
if ( editingSceneUI != null )
|
||||
{
|
||||
editingSceneUI.DeleteSelf();
|
||||
editingSceneUI = null;
|
||||
}
|
||||
|
||||
editingSceneRegion = region;
|
||||
editingSceneUI = this.CreateChild<UI>();
|
||||
editingSceneUI.settings = region.uiSettings;
|
||||
|
||||
editingSceneUI.BindChildrenOf( region );
|
||||
}
|
||||
|
||||
editingSceneUI.updateMode = UI.UpdateMode.Only_Manual_Updates;
|
||||
|
||||
if ( region.reassignUI )
|
||||
{
|
||||
editingSceneUI.settings = region.uiSettings;
|
||||
region.SetUI( editingSceneUI );
|
||||
editingSceneUI.BindChildrenOf( region );
|
||||
region.reassignUI = false;
|
||||
}
|
||||
|
||||
if ( region.updateInEditor )
|
||||
{
|
||||
region.SetUI( editingSceneUI );
|
||||
editingSceneUI.BindChildrenOf( region );
|
||||
editingSceneUI.fontZoom = region.fontZoom;
|
||||
|
||||
editingSceneUI.UpdateExternal( (float)delta );
|
||||
region.Layout();
|
||||
region.computedFontSize = editingSceneUI.X_computedFontSizePixels;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
#endif
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="FlashEffect" load_steps=8 format=3 uid="uid://pok7bfoksfmr"]
|
||||
[gd_resource type="Resource" script_class="FlashEffect" format=3 uid="uid://pok7bfoksfmr"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dncqth3uf3tb3" path="res://addons/rokojori_action_library/Runtime/Animation/HDRColor.cs" id="1_pp4qy"]
|
||||
[ext_resource type="Script" uid="uid://c5tm02yj1bhhx" path="res://addons/rokojori_action_library/Runtime/Animation/AnimationCurve.cs" id="2_f6f0o"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="HighlightEffect" load_steps=7 format=3 uid="uid://dadr1kd14m7g3"]
|
||||
[gd_resource type="Resource" script_class="HighlightEffect" format=3 uid="uid://dadr1kd14m7g3"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dncqth3uf3tb3" path="res://addons/rokojori_action_library/Runtime/Animation/HDRColor.cs" id="1_sk831"]
|
||||
[ext_resource type="Script" uid="uid://dkbln8rf5p0pu" path="res://addons/rokojori_action_library/Runtime/Animation/Highlight/HighlightEffect.cs" id="2_pq63c"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="ShakeEffect" load_steps=8 format=3 uid="uid://begmg64jiaoq0"]
|
||||
[gd_resource type="Resource" script_class="ShakeEffect" format=3 uid="uid://begmg64jiaoq0"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://bec6skfqkb2ci" path="res://addons/rokojori_action_library/Runtime/Animation/Shake/ShakeEffect.cs" id="1_gbi52"]
|
||||
[ext_resource type="Script" uid="uid://c5tm02yj1bhhx" path="res://addons/rokojori_action_library/Runtime/Animation/AnimationCurve.cs" id="2_g6huw"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="ShakeEffect" load_steps=8 format=3 uid="uid://c2wbn25rxynk8"]
|
||||
[gd_resource type="Resource" script_class="ShakeEffect" format=3 uid="uid://c2wbn25rxynk8"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://bec6skfqkb2ci" path="res://addons/rokojori_action_library/Runtime/Animation/Shake/ShakeEffect.cs" id="1_68es8"]
|
||||
[ext_resource type="Script" uid="uid://c5tm02yj1bhhx" path="res://addons/rokojori_action_library/Runtime/Animation/AnimationCurve.cs" id="2_wfmv2"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="AppSettingsCategory" load_steps=7 format=3 uid="uid://cewutd6leekw6"]
|
||||
[gd_resource type="Resource" script_class="AppSettingsCategory" format=3 uid="uid://cewutd6leekw6"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://b3kfbhiwqt26o" path="res://addons/rokojori_action_library/Runtime/App/Settings/AppSettingsCategory.cs" id="1_p3j14"]
|
||||
[ext_resource type="Resource" uid="uid://y3wia1vd1q68" path="res://addons/rokojori_action_library/Runtime/App/Settings/Presets/Audio/Master AudioBus Setting.tres" id="2_1g5c8"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="LocaleText" load_steps=2 format=3 uid="uid://dn5qwc0t4llho"]
|
||||
[gd_resource type="Resource" script_class="LocaleText" format=3 uid="uid://dn5qwc0t4llho"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://bvj322mokkq63" path="res://addons/rokojori_action_library/Runtime/Localization/LocaleText.cs" id="1_i1gki"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="AudioBusSetting" load_steps=4 format=3 uid="uid://y3wia1vd1q68"]
|
||||
[gd_resource type="Resource" script_class="AudioBusSetting" format=3 uid="uid://y3wia1vd1q68"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dji3qa0w7pbql" path="res://addons/rokojori_action_library/Runtime/App/Settings/NumberSetting/AudioBusSetting.cs" id="1_og01v"]
|
||||
[ext_resource type="Resource" uid="uid://osfjg5u2jb4f" path="res://addons/rokojori_action_library/Runtime/Localization/DataBase/Numberic/Percantage-Suffix.tres" id="2_j708b"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="AudioBusSetting" load_steps=4 format=3 uid="uid://b24rm0ggveq8y"]
|
||||
[gd_resource type="Resource" script_class="AudioBusSetting" format=3 uid="uid://b24rm0ggveq8y"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dji3qa0w7pbql" path="res://addons/rokojori_action_library/Runtime/App/Settings/NumberSetting/AudioBusSetting.cs" id="1_clrqb"]
|
||||
[ext_resource type="Resource" uid="uid://osfjg5u2jb4f" path="res://addons/rokojori_action_library/Runtime/Localization/DataBase/Numberic/Percantage-Suffix.tres" id="2_bhjsn"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="AudioBusSetting" load_steps=4 format=3 uid="uid://da34tyk6d0l4b"]
|
||||
[gd_resource type="Resource" script_class="AudioBusSetting" format=3 uid="uid://da34tyk6d0l4b"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dji3qa0w7pbql" path="res://addons/rokojori_action_library/Runtime/App/Settings/NumberSetting/AudioBusSetting.cs" id="1_04sn2"]
|
||||
[ext_resource type="Resource" uid="uid://osfjg5u2jb4f" path="res://addons/rokojori_action_library/Runtime/Localization/DataBase/Numberic/Percantage-Suffix.tres" id="2_37v0c"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="AudioBusSetting" load_steps=4 format=3 uid="uid://ckpuhu87npn2l"]
|
||||
[gd_resource type="Resource" script_class="AudioBusSetting" format=3 uid="uid://ckpuhu87npn2l"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dji3qa0w7pbql" path="res://addons/rokojori_action_library/Runtime/App/Settings/NumberSetting/AudioBusSetting.cs" id="1_paelx"]
|
||||
[ext_resource type="Resource" uid="uid://osfjg5u2jb4f" path="res://addons/rokojori_action_library/Runtime/Localization/DataBase/Numberic/Percantage-Suffix.tres" id="2_s0edn"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="LocaleText" load_steps=4 format=3 uid="uid://ckevpvf37gsu0"]
|
||||
[gd_resource type="Resource" script_class="LocaleText" format=3 uid="uid://ckevpvf37gsu0"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://b584767duemqk" path="res://addons/rokojori_action_library/Runtime/Localization/LocaleTextEntry.cs" id="1_jucsw"]
|
||||
[ext_resource type="Script" uid="uid://bvj322mokkq63" path="res://addons/rokojori_action_library/Runtime/Localization/LocaleText.cs" id="2_d7iky"]
|
||||
|
|
|
|||
|
|
@ -1,27 +1,21 @@
|
|||
[gd_resource type="Resource" script_class="MouseEditorCameraInputSettings" load_steps=12 format=3 uid="uid://dgxeibp77r1wy"]
|
||||
[gd_resource type="Resource" script_class="EditorCameraInputSettings" format=3 uid="uid://dgxeibp77r1wy"]
|
||||
|
||||
[ext_resource type="Resource" uid="uid://o55y4n73ivh5" path="res://addons/rokojori_action_library/Runtime/VirtualCameras/MouseEditorCamera/Inputs/Sensors/Move Back.tres" id="1_thixm"]
|
||||
[ext_resource type="Resource" uid="uid://t5no1o63fjr5" path="res://addons/rokojori_action_library/Runtime/VirtualCameras/MouseEditorCamera/Inputs/Sensors/Move Down.tres" id="2_jknb0"]
|
||||
[ext_resource type="Resource" uid="uid://df6lrugctcuel" path="res://addons/rokojori_action_library/Runtime/VirtualCameras/MouseEditorCamera/Inputs/Sensors/Move Forward.tres" id="3_bmph5"]
|
||||
[ext_resource type="Resource" uid="uid://csuggvbd1w2a4" path="res://addons/rokojori_action_library/Runtime/VirtualCameras/MouseEditorCamera/Inputs/Sensors/Move Left.tres" id="4_nn62x"]
|
||||
[ext_resource type="Resource" uid="uid://c7msoe5b0k5bp" path="res://addons/rokojori_action_library/Runtime/VirtualCameras/MouseEditorCamera/Inputs/Sensors/Mouse Orbit Button.tres" id="5_thixm"]
|
||||
[ext_resource type="Resource" uid="uid://cshqmy08jhmrp" path="res://addons/rokojori_action_library/Runtime/VirtualCameras/MouseEditorCamera/Inputs/Sensors/Mouse Pan Button.tres" id="6_jknb0"]
|
||||
[ext_resource type="Resource" uid="uid://da2q51p05qdyy" path="res://addons/rokojori_action_library/Runtime/VirtualCameras/MouseEditorCamera/Inputs/Sensors/Move Right.tres" id="7_r8nl0"]
|
||||
[ext_resource type="Script" uid="uid://dfihqotugioar" path="res://addons/rokojori_action_library/Runtime/VirtualCameras/MouseEditorCamera/MouseEditorCameraInputSettings.cs" id="8_thixm"]
|
||||
[ext_resource type="Resource" uid="uid://4mbw74ka5aln" path="res://addons/rokojori_action_library/Runtime/VirtualCameras/MouseEditorCamera/Inputs/Sensors/Move Upward.tres" id="9_sydsp"]
|
||||
[ext_resource type="Resource" uid="uid://b73j0lq2sqck7" path="res://addons/rokojori_action_library/Runtime/VirtualCameras/MouseEditorCamera/Inputs/Sensors/Zoom In.tres" id="10_phpwm"]
|
||||
[ext_resource type="Resource" uid="uid://b3o3ht1b2llnh" path="res://addons/rokojori_action_library/Runtime/VirtualCameras/MouseEditorCamera/Inputs/Sensors/Zoom Out.tres" id="11_2c0d3"]
|
||||
[ext_resource type="Resource" uid="uid://o55y4n73ivh5" path="res://addons/rokojori_action_library/Runtime/Cameras/EditorCamera/Inputs/Sensors/Move Back.tres" id="1_thixm"]
|
||||
[ext_resource type="Resource" uid="uid://t5no1o63fjr5" path="res://addons/rokojori_action_library/Runtime/Cameras/EditorCamera/Inputs/Sensors/Move Down.tres" id="2_jknb0"]
|
||||
[ext_resource type="Resource" uid="uid://df6lrugctcuel" path="res://addons/rokojori_action_library/Runtime/Cameras/EditorCamera/Inputs/Sensors/Move Forward.tres" id="3_bmph5"]
|
||||
[ext_resource type="Resource" uid="uid://csuggvbd1w2a4" path="res://addons/rokojori_action_library/Runtime/Cameras/EditorCamera/Inputs/Sensors/Move Left.tres" id="4_nn62x"]
|
||||
[ext_resource type="Resource" uid="uid://c7msoe5b0k5bp" path="res://addons/rokojori_action_library/Runtime/Cameras/EditorCamera/Inputs/Sensors/Mouse Orbit Button.tres" id="5_thixm"]
|
||||
[ext_resource type="Resource" uid="uid://cshqmy08jhmrp" path="res://addons/rokojori_action_library/Runtime/Cameras/EditorCamera/Inputs/Sensors/Mouse Pan Button.tres" id="6_jknb0"]
|
||||
[ext_resource type="Resource" uid="uid://da2q51p05qdyy" path="res://addons/rokojori_action_library/Runtime/Cameras/EditorCamera/Inputs/Sensors/Move Right.tres" id="7_r8nl0"]
|
||||
[ext_resource type="Script" uid="uid://dfihqotugioar" path="res://addons/rokojori_action_library/Runtime/Cameras/EditorCamera/EditorCameraInputSettings.cs" id="8_thixm"]
|
||||
[ext_resource type="Resource" uid="uid://4mbw74ka5aln" path="res://addons/rokojori_action_library/Runtime/Cameras/EditorCamera/Inputs/Sensors/Move Upward.tres" id="9_sydsp"]
|
||||
[ext_resource type="Resource" uid="uid://b73j0lq2sqck7" path="res://addons/rokojori_action_library/Runtime/Cameras/EditorCamera/Inputs/Sensors/Zoom In.tres" id="10_phpwm"]
|
||||
[ext_resource type="Resource" uid="uid://b3o3ht1b2llnh" path="res://addons/rokojori_action_library/Runtime/Cameras/EditorCamera/Inputs/Sensors/Zoom Out.tres" id="11_2c0d3"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("8_thixm")
|
||||
yawButtonsSpeed = 1.0
|
||||
pitchButtonsSpeed = 1.0
|
||||
zoomStepInPercentage = 10.0
|
||||
zoomInButton = ExtResource("10_phpwm")
|
||||
zoomInModifierButtons = []
|
||||
zoomOutButton = ExtResource("11_2c0d3")
|
||||
zoomOutModifierButtons = []
|
||||
continousZoomStepInPercentage = 1.0
|
||||
forwardButton = ExtResource("3_bmph5")
|
||||
backwardsButton = ExtResource("1_thixm")
|
||||
leftButton = ExtResource("4_nn62x")
|
||||
|
|
@ -30,13 +24,8 @@ upButton = ExtResource("9_sydsp")
|
|||
downButton = ExtResource("2_jknb0")
|
||||
moveSpeed = 10.0
|
||||
mouseMovementEnabled = true
|
||||
minimizeDistanceOnMovement = true
|
||||
mouseMovementYawSpeed = 0.2
|
||||
mouseMovementPitchSpeed = 0.2
|
||||
mouseMovementOrbitButton = ExtResource("5_thixm")
|
||||
mouseMovementOrbitModifierButtons = []
|
||||
mouseMovementPanSpeedX = 0.001
|
||||
mouseMovementPanSpeedY = 0.001
|
||||
mouseMovementPanButton = ExtResource("6_jknb0")
|
||||
mouseMovementPanModifierButtons = []
|
||||
metadata/_custom_type_script = "uid://dfihqotugioar"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="CombineSensor" load_steps=3 format=3 uid="uid://c7msoe5b0k5bp"]
|
||||
[gd_resource type="Resource" script_class="CombineSensor" format=3 uid="uid://c7msoe5b0k5bp"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://eid0qnlvq4n1" path="res://addons/rokojori_action_library/Runtime/Sensors/CombineSensor.cs" id="1_1j1kl"]
|
||||
[ext_resource type="Resource" uid="uid://b8u374emi528p" path="res://addons/rokojori_action_library/Runtime/Sensors/Default-Sensors/Keyboard & Mouse/Mouse/Mouse-Button Middle.tres" id="2_e3b12"]
|
||||
|
|
@ -6,13 +6,4 @@
|
|||
[resource]
|
||||
script = ExtResource("1_1j1kl")
|
||||
sensors = [ExtResource("2_e3b12")]
|
||||
showOnlyVisibleIcons = false
|
||||
numVisible = 0
|
||||
inputIcons = []
|
||||
useInputIconsFromSensors = true
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
metadata/_custom_type_script = "uid://eid0qnlvq4n1"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="CombineSensor" load_steps=3 format=3 uid="uid://cshqmy08jhmrp"]
|
||||
[gd_resource type="Resource" script_class="CombineSensor" format=3 uid="uid://cshqmy08jhmrp"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://eid0qnlvq4n1" path="res://addons/rokojori_action_library/Runtime/Sensors/CombineSensor.cs" id="1_h68ww"]
|
||||
[ext_resource type="Resource" uid="uid://cbqyav0cnehoq" path="res://addons/rokojori_action_library/Runtime/Sensors/Default-Sensors/Keyboard & Mouse/Mouse/Mouse-Button Right.tres" id="2_m8eqt"]
|
||||
|
|
@ -6,13 +6,4 @@
|
|||
[resource]
|
||||
script = ExtResource("1_h68ww")
|
||||
sensors = [ExtResource("2_m8eqt")]
|
||||
showOnlyVisibleIcons = false
|
||||
numVisible = 0
|
||||
inputIcons = []
|
||||
useInputIconsFromSensors = true
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
metadata/_custom_type_script = "uid://eid0qnlvq4n1"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="CameraEffect" load_steps=8 format=3 uid="uid://ds6sptirfbytc"]
|
||||
[gd_resource type="Resource" script_class="CameraEffect" format=3 uid="uid://ds6sptirfbytc"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://bw7kbgl2vbeoh" path="res://addons/rokojori_action_library/Runtime/Cameras/Effects/CameraEffectTargetAnimationCurve.cs" id="1_m7t4k"]
|
||||
[ext_resource type="Script" uid="uid://bmcpy4cqv1lmr" path="res://addons/rokojori_action_library/Runtime/Cameras/Effects/CameraEffect.cs" id="2_ahqbp"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="CameraEffect" load_steps=10 format=3 uid="uid://uyuplc6hm25j"]
|
||||
[gd_resource type="Resource" script_class="CameraEffect" format=3 uid="uid://uyuplc6hm25j"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://bmcpy4cqv1lmr" path="res://addons/rokojori_action_library/Runtime/Cameras/Effects/CameraEffect.cs" id="1_5l6xm"]
|
||||
[ext_resource type="Script" uid="uid://bw7kbgl2vbeoh" path="res://addons/rokojori_action_library/Runtime/Cameras/Effects/CameraEffectTargetAnimationCurve.cs" id="1_x21rf"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="LocaleText" load_steps=2 format=3 uid="uid://osfjg5u2jb4f"]
|
||||
[gd_resource type="Resource" script_class="LocaleText" format=3 uid="uid://osfjg5u2jb4f"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://bvj322mokkq63" path="res://addons/rokojori_action_library/Runtime/Localization/LocaleText.cs" id="1_khv63"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="ShaderPropertyBlock" load_steps=8 format=3 uid="uid://bssrxwasqgpbd"]
|
||||
[gd_resource type="Resource" script_class="ShaderPropertyBlock" format=3 uid="uid://bssrxwasqgpbd"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://by2xsdh6vbaja" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Properties/ShaderPropertyBlock.cs" id="1_x3rvk"]
|
||||
[ext_resource type="Resource" uid="uid://c84w0b74mfgpr" path="res://addons/rokojori_action_library/Runtime/Physics/Wind/Properties/rj_GlobalWindDirectionProperty.tres" id="2_dcpws"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="Vector2PropertyName" load_steps=2 format=3 uid="uid://cbiy1b6ify6lh"]
|
||||
[gd_resource type="Resource" script_class="Vector2PropertyName" format=3 uid="uid://cbiy1b6ify6lh"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://cebfjne1ewhnm" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Vector2PropertyName.cs" id="1_g7w7o"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="Vector2Property" load_steps=3 format=3 uid="uid://c84w0b74mfgpr"]
|
||||
[gd_resource type="Resource" script_class="Vector2Property" format=3 uid="uid://c84w0b74mfgpr"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://colw2dxvhfkxy" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Properties/Vector2Property.cs" id="1_gdg5g"]
|
||||
[ext_resource type="Resource" uid="uid://cbiy1b6ify6lh" path="res://addons/rokojori_action_library/Runtime/Physics/Wind/Properties/rj_GlobalWindDirection.tres" id="1_xqqec"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="Sampler2DPropertyName" load_steps=2 format=3 uid="uid://bnjsr0w6xwkho"]
|
||||
[gd_resource type="Resource" script_class="Sampler2DPropertyName" format=3 uid="uid://bnjsr0w6xwkho"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://bsreukpi8eiyy" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Sampler2DPropertyName.cs" id="1_6unrl"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="Sampler2DProperty" load_steps=4 format=3 uid="uid://efmv0fcfxlqe"]
|
||||
[gd_resource type="Resource" script_class="Sampler2DProperty" format=3 uid="uid://efmv0fcfxlqe"]
|
||||
|
||||
[ext_resource type="Resource" uid="uid://bnjsr0w6xwkho" path="res://addons/rokojori_action_library/Runtime/Physics/Wind/Properties/rj_GlobalWindNoiseTextureClose.tres" id="1_7ivdf"]
|
||||
[ext_resource type="Script" uid="uid://co43lpc6cforf" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Properties/Sampler2DProperty.cs" id="2_ss2hx"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="Sampler2DPropertyName" load_steps=2 format=3 uid="uid://cwwu7wohhc0be"]
|
||||
[gd_resource type="Resource" script_class="Sampler2DPropertyName" format=3 uid="uid://cwwu7wohhc0be"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://bsreukpi8eiyy" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Sampler2DPropertyName.cs" id="1_s8txx"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="Sampler2DProperty" load_steps=4 format=3 uid="uid://du6ytwf1rcwop"]
|
||||
[gd_resource type="Resource" script_class="Sampler2DProperty" format=3 uid="uid://du6ytwf1rcwop"]
|
||||
|
||||
[ext_resource type="Resource" uid="uid://cwwu7wohhc0be" path="res://addons/rokojori_action_library/Runtime/Physics/Wind/Properties/rj_GlobalWindNoiseTextureFar.tres" id="1_57cas"]
|
||||
[ext_resource type="Script" uid="uid://co43lpc6cforf" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Properties/Sampler2DProperty.cs" id="2_vmqqo"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="Vector2PropertyName" load_steps=2 format=3 uid="uid://cqw5ebx5oq2p0"]
|
||||
[gd_resource type="Resource" script_class="Vector2PropertyName" format=3 uid="uid://cqw5ebx5oq2p0"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://cebfjne1ewhnm" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Vector2PropertyName.cs" id="1_n4dfn"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="Vector2Property" load_steps=3 format=3 uid="uid://bqm71chf8v7rs"]
|
||||
[gd_resource type="Resource" script_class="Vector2Property" format=3 uid="uid://bqm71chf8v7rs"]
|
||||
|
||||
[ext_resource type="Resource" uid="uid://cqw5ebx5oq2p0" path="res://addons/rokojori_action_library/Runtime/Physics/Wind/Properties/rj_GlobalWindPositionClose.tres" id="1_laxhy"]
|
||||
[ext_resource type="Script" uid="uid://colw2dxvhfkxy" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Properties/Vector2Property.cs" id="1_ujntv"]
|
||||
|
|
@ -6,4 +6,5 @@
|
|||
[resource]
|
||||
script = ExtResource("1_ujntv")
|
||||
propertyName = ExtResource("1_laxhy")
|
||||
value = Vector2(-0.0027365217, 0)
|
||||
metadata/_custom_type_script = "uid://colw2dxvhfkxy"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="Vector2PropertyName" load_steps=2 format=3 uid="uid://qm0sg1s8xaox"]
|
||||
[gd_resource type="Resource" script_class="Vector2PropertyName" format=3 uid="uid://qm0sg1s8xaox"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://cebfjne1ewhnm" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Vector2PropertyName.cs" id="1_pel8l"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="Vector2Property" load_steps=3 format=3 uid="uid://dhb638puibjbo"]
|
||||
[gd_resource type="Resource" script_class="Vector2Property" format=3 uid="uid://dhb638puibjbo"]
|
||||
|
||||
[ext_resource type="Resource" uid="uid://qm0sg1s8xaox" path="res://addons/rokojori_action_library/Runtime/Physics/Wind/Properties/rj_GlobalWindPositionFar.tres" id="1_dn5hy"]
|
||||
[ext_resource type="Script" uid="uid://colw2dxvhfkxy" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Properties/Vector2Property.cs" id="2_kk3m7"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="FloatPropertyName" load_steps=2 format=3 uid="uid://bffjivxr8u7wy"]
|
||||
[gd_resource type="Resource" script_class="FloatPropertyName" format=3 uid="uid://bffjivxr8u7wy"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://jqgdm3r2u8xq" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/FloatPropertyName.cs" id="1_ljs1d"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="FloatProperty" load_steps=3 format=3 uid="uid://dtmjjes2elpl0"]
|
||||
[gd_resource type="Resource" script_class="FloatProperty" format=3 uid="uid://dtmjjes2elpl0"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://cabo4a0q18w2o" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Properties/FloatProperty.cs" id="1_4man4"]
|
||||
[ext_resource type="Resource" uid="uid://bffjivxr8u7wy" path="res://addons/rokojori_action_library/Runtime/Physics/Wind/Properties/rj_GlobalWindSpeed.tres" id="1_jny1i"]
|
||||
|
|
@ -6,4 +6,5 @@
|
|||
[resource]
|
||||
script = ExtResource("1_4man4")
|
||||
propertyName = ExtResource("1_jny1i")
|
||||
value = 40.0
|
||||
metadata/_custom_type_script = "uid://cabo4a0q18w2o"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="SubMaterialTransfer" load_steps=16 format=3 uid="uid://dofm6e7wqggd5"]
|
||||
[gd_resource type="Resource" script_class="SubMaterialTransfer" format=3 uid="uid://dofm6e7wqggd5"]
|
||||
|
||||
[ext_resource type="Resource" uid="uid://cwbo0avyyq0t" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/Color/Albedo Color.tres" id="1_v1mlf"]
|
||||
[ext_resource type="Script" uid="uid://c4kkc55ia5udl" path="res://addons/rokojori_action_library/Runtime/Shading/Materials/Transfers/ColorPropertyTransfer.cs" id="2_8laus"]
|
||||
|
|
@ -39,23 +39,9 @@ to = ExtResource("10_18hcy")
|
|||
[resource]
|
||||
script = ExtResource("3_lmjhi")
|
||||
info = "Albedo From Standard"
|
||||
canvasItem = false
|
||||
fog = false
|
||||
orm3D = true
|
||||
standard3D = true
|
||||
panoramaSky = false
|
||||
particleProcess = false
|
||||
physicalSky = false
|
||||
placeholder = false
|
||||
proceduralSky = false
|
||||
shader = false
|
||||
shaders = []
|
||||
bools = []
|
||||
colors = [SubResource("Resource_7u5wc")]
|
||||
floats = [SubResource("Resource_t22rd")]
|
||||
ints = []
|
||||
texture2D = [SubResource("Resource_17abg")]
|
||||
vector2 = []
|
||||
vector3 = [SubResource("Resource_cn00v"), SubResource("Resource_ecqt0")]
|
||||
vector4 = []
|
||||
custom = []
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[gd_resource type="Resource" script_class="MaterialTransfer" load_steps=3 format=3 uid="uid://df4l75dnmduaf"]
|
||||
[gd_resource type="Resource" script_class="MaterialTransfer" format=3 uid="uid://df4l75dnmduaf"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Shading/Materials/MaterialTransfer.cs" id="1_72s2u"]
|
||||
[ext_resource type="Script" uid="uid://drbmjiqfk51c3" path="res://addons/rokojori_action_library/Runtime/Shading/Materials/MaterialTransfer.cs" id="1_72s2u"]
|
||||
[ext_resource type="Resource" uid="uid://dofm6e7wqggd5" path="res://addons/rokojori_action_library/Runtime/Procedural/Baking/BakingMaterials/Albedo/Albedo From Standard.tres" id="2_ss0ai"]
|
||||
|
||||
[resource]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="SubMaterialTransfer" load_steps=16 format=3 uid="uid://crxw8r6q5uhpe"]
|
||||
[gd_resource type="Resource" script_class="SubMaterialTransfer" format=3 uid="uid://crxw8r6q5uhpe"]
|
||||
|
||||
[ext_resource type="Resource" uid="uid://cwbo0avyyq0t" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/Color/Albedo Color.tres" id="1_vhp84"]
|
||||
[ext_resource type="Script" uid="uid://c4kkc55ia5udl" path="res://addons/rokojori_action_library/Runtime/Shading/Materials/Transfers/ColorPropertyTransfer.cs" id="2_awr2w"]
|
||||
|
|
@ -39,23 +39,9 @@ to = ExtResource("10_5fqi2")
|
|||
[resource]
|
||||
script = ExtResource("5_iuqjk")
|
||||
info = "Depth From Standard"
|
||||
canvasItem = false
|
||||
fog = false
|
||||
orm3D = true
|
||||
standard3D = true
|
||||
panoramaSky = false
|
||||
particleProcess = false
|
||||
physicalSky = false
|
||||
placeholder = false
|
||||
proceduralSky = false
|
||||
shader = false
|
||||
shaders = []
|
||||
bools = []
|
||||
colors = [SubResource("Resource_7u5wc")]
|
||||
floats = [SubResource("Resource_t22rd")]
|
||||
ints = []
|
||||
texture2D = [SubResource("Resource_17abg")]
|
||||
vector2 = []
|
||||
vector3 = [SubResource("Resource_cn00v"), SubResource("Resource_ecqt0")]
|
||||
vector4 = []
|
||||
custom = []
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[gd_resource type="Resource" script_class="MaterialTransfer" load_steps=3 format=3 uid="uid://b2rdhv8dq5k0d"]
|
||||
[gd_resource type="Resource" script_class="MaterialTransfer" format=3 uid="uid://b2rdhv8dq5k0d"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Shading/Materials/MaterialTransfer.cs" id="1_drmc6"]
|
||||
[ext_resource type="Script" uid="uid://drbmjiqfk51c3" path="res://addons/rokojori_action_library/Runtime/Shading/Materials/MaterialTransfer.cs" id="1_drmc6"]
|
||||
[ext_resource type="Resource" uid="uid://crxw8r6q5uhpe" path="res://addons/rokojori_action_library/Runtime/Procedural/Baking/BakingMaterials/Depth/Depth From Standard.tres" id="2_o21o4"]
|
||||
|
||||
[resource]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="SubMaterialTransfer" load_steps=20 format=3 uid="uid://dgyihly620ymm"]
|
||||
[gd_resource type="Resource" script_class="SubMaterialTransfer" format=3 uid="uid://dgyihly620ymm"]
|
||||
|
||||
[ext_resource type="Resource" uid="uid://cwbo0avyyq0t" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/Color/Albedo Color.tres" id="1_8s4ko"]
|
||||
[ext_resource type="Script" uid="uid://c4kkc55ia5udl" path="res://addons/rokojori_action_library/Runtime/Shading/Materials/Transfers/ColorPropertyTransfer.cs" id="2_edgft"]
|
||||
|
|
@ -8,7 +8,6 @@
|
|||
[ext_resource type="Resource" uid="uid://c6actnjj8i8o5" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/Float/Normal Scale.tres" id="5_iyqth"]
|
||||
[ext_resource type="Resource" uid="uid://dldbju3x0x2ow" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/Texture2D/Albedo Texture.tres" id="6_l0r8p"]
|
||||
[ext_resource type="Script" uid="uid://c55j0ppclm0k" path="res://addons/rokojori_action_library/Runtime/Shading/Materials/Transfers/Texture2DPropertyTransfer.cs" id="7_l54r2"]
|
||||
[ext_resource type="Resource" uid="uid://bmt10lgwm8ckx" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/Texture2D/Normal Texture.tres" id="9_fmy5n"]
|
||||
[ext_resource type="Resource" uid="uid://cn7nxc0qw7pan" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/Vector3/UV1 Offset.tres" id="10_dw87i"]
|
||||
[ext_resource type="Script" uid="uid://sm7n01wb77f1" path="res://addons/rokojori_action_library/Runtime/Shading/Materials/Transfers/Vector3PropertyTransfer.cs" id="11_mpsiy"]
|
||||
[ext_resource type="Resource" uid="uid://douianw6mx4p5" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/Vector3/UV1 Scale.tres" id="12_xnkjm"]
|
||||
|
|
@ -35,8 +34,6 @@ to = ExtResource("6_l0r8p")
|
|||
|
||||
[sub_resource type="Resource" id="Resource_0f0yq"]
|
||||
script = ExtResource("7_l54r2")
|
||||
from = ExtResource("9_fmy5n")
|
||||
to = ExtResource("9_fmy5n")
|
||||
|
||||
[sub_resource type="Resource" id="Resource_2y0hl"]
|
||||
script = ExtResource("11_mpsiy")
|
||||
|
|
@ -51,23 +48,9 @@ to = ExtResource("12_xnkjm")
|
|||
[resource]
|
||||
script = ExtResource("5_atmxl")
|
||||
info = "Normal From Standard"
|
||||
canvasItem = false
|
||||
fog = false
|
||||
orm3D = true
|
||||
standard3D = true
|
||||
panoramaSky = false
|
||||
particleProcess = false
|
||||
physicalSky = false
|
||||
placeholder = false
|
||||
proceduralSky = false
|
||||
shader = false
|
||||
shaders = []
|
||||
bools = []
|
||||
colors = [SubResource("Resource_7u5wc")]
|
||||
floats = [SubResource("Resource_t22rd"), SubResource("Resource_4xt6c")]
|
||||
ints = []
|
||||
texture2D = [SubResource("Resource_17abg"), SubResource("Resource_0f0yq")]
|
||||
vector2 = []
|
||||
vector3 = [SubResource("Resource_2y0hl"), SubResource("Resource_s484q")]
|
||||
vector4 = []
|
||||
custom = []
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="MaterialTransfer" load_steps=3 format=3 uid="uid://h2ypphdx3inw"]
|
||||
[gd_resource type="Resource" script_class="MaterialTransfer" format=3 uid="uid://h2ypphdx3inw"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://drbmjiqfk51c3" path="res://addons/rokojori_action_library/Runtime/Shading/Materials/MaterialTransfer.cs" id="1_0hco5"]
|
||||
[ext_resource type="Resource" uid="uid://dgyihly620ymm" path="res://addons/rokojori_action_library/Runtime/Procedural/Baking/BakingMaterials/Normal/Normal From Standard.tres" id="2_cufcd"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="SubMaterialTransfer" load_steps=36 format=3 uid="uid://kwk45f3p6ic4"]
|
||||
[gd_resource type="Resource" script_class="SubMaterialTransfer" format=3 uid="uid://kwk45f3p6ic4"]
|
||||
|
||||
[ext_resource type="Resource" uid="uid://cwbo0avyyq0t" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/Color/Albedo Color.tres" id="1_b7tdx"]
|
||||
[ext_resource type="Script" uid="uid://c4kkc55ia5udl" path="res://addons/rokojori_action_library/Runtime/Shading/Materials/Transfers/ColorPropertyTransfer.cs" id="2_vwrue"]
|
||||
|
|
@ -13,12 +13,9 @@
|
|||
[ext_resource type="Resource" uid="uid://dldbju3x0x2ow" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/Texture2D/Albedo Texture.tres" id="7_yqc2y"]
|
||||
[ext_resource type="Resource" uid="uid://d2x1ijwsv2urr" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/TextureChannels/Roughness Texture Channel.tres" id="8_gljck"]
|
||||
[ext_resource type="Script" uid="uid://c55j0ppclm0k" path="res://addons/rokojori_action_library/Runtime/Shading/Materials/Transfers/Texture2DPropertyTransfer.cs" id="8_iwxjk"]
|
||||
[ext_resource type="Resource" uid="uid://cow6rei03x5bs" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/Texture2D/AO Texture.tres" id="10_8mfy8"]
|
||||
[ext_resource type="Resource" uid="uid://cn7nxc0qw7pan" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/Vector3/UV1 Offset.tres" id="10_y3nsy"]
|
||||
[ext_resource type="Resource" uid="uid://csiwpeupf761o" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/Texture2D/Metallic Texture.tres" id="11_i36mp"]
|
||||
[ext_resource type="Script" uid="uid://sm7n01wb77f1" path="res://addons/rokojori_action_library/Runtime/Shading/Materials/Transfers/Vector3PropertyTransfer.cs" id="11_on6ta"]
|
||||
[ext_resource type="Resource" uid="uid://douianw6mx4p5" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/Vector3/UV1 Scale.tres" id="12_a173h"]
|
||||
[ext_resource type="Resource" uid="uid://bdjlvcpc13hl6" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/Texture2D/Roughness Texture.tres" id="12_u6pwu"]
|
||||
[ext_resource type="Resource" uid="uid://bprgfki4joe6x" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/Vector4/AO Texture Channel.tres" id="16_56ntu"]
|
||||
[ext_resource type="Resource" uid="uid://b0t27ujy2oqpd" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/Vector4/Metallic Texture Channel.tres" id="18_4frq6"]
|
||||
[ext_resource type="Resource" uid="uid://cni6awfm7rw14" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Property Library/Vector4/Roughness Texture Channel.tres" id="19_gc6bk"]
|
||||
|
|
@ -65,18 +62,12 @@ to = ExtResource("7_yqc2y")
|
|||
|
||||
[sub_resource type="Resource" id="Resource_0f0yq"]
|
||||
script = ExtResource("8_iwxjk")
|
||||
from = ExtResource("10_8mfy8")
|
||||
to = ExtResource("10_8mfy8")
|
||||
|
||||
[sub_resource type="Resource" id="Resource_76qjn"]
|
||||
script = ExtResource("8_iwxjk")
|
||||
from = ExtResource("11_i36mp")
|
||||
to = ExtResource("11_i36mp")
|
||||
|
||||
[sub_resource type="Resource" id="Resource_yhmds"]
|
||||
script = ExtResource("8_iwxjk")
|
||||
from = ExtResource("12_u6pwu")
|
||||
to = ExtResource("12_u6pwu")
|
||||
|
||||
[sub_resource type="Resource" id="Resource_2y0hl"]
|
||||
script = ExtResource("11_on6ta")
|
||||
|
|
@ -91,23 +82,10 @@ to = ExtResource("12_a173h")
|
|||
[resource]
|
||||
script = ExtResource("6_7dw2g")
|
||||
info = "ORM From Standard"
|
||||
canvasItem = false
|
||||
fog = false
|
||||
orm3D = true
|
||||
standard3D = true
|
||||
panoramaSky = false
|
||||
particleProcess = false
|
||||
physicalSky = false
|
||||
placeholder = false
|
||||
proceduralSky = false
|
||||
shader = false
|
||||
shaders = []
|
||||
bools = []
|
||||
colors = [SubResource("Resource_7u5wc")]
|
||||
floats = [SubResource("Resource_t22rd"), SubResource("Resource_4xt6c"), SubResource("Resource_oahhf")]
|
||||
ints = []
|
||||
texture2D = [SubResource("Resource_17abg"), SubResource("Resource_0f0yq"), SubResource("Resource_76qjn"), SubResource("Resource_yhmds")]
|
||||
vector2 = []
|
||||
vector3 = [SubResource("Resource_2y0hl"), SubResource("Resource_s484q")]
|
||||
vector4 = []
|
||||
custom = [SubResource("Resource_odp7t"), SubResource("Resource_klwhe"), SubResource("Resource_h8iqk")]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[gd_resource type="Resource" script_class="MaterialTransfer" load_steps=3 format=3 uid="uid://dssb72y4ryvm7"]
|
||||
[gd_resource type="Resource" script_class="MaterialTransfer" format=3 uid="uid://dssb72y4ryvm7"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Shading/Materials/MaterialTransfer.cs" id="1_bqkgd"]
|
||||
[ext_resource type="Script" uid="uid://drbmjiqfk51c3" path="res://addons/rokojori_action_library/Runtime/Shading/Materials/MaterialTransfer.cs" id="1_bqkgd"]
|
||||
[ext_resource type="Resource" uid="uid://kwk45f3p6ic4" path="res://addons/rokojori_action_library/Runtime/Procedural/Baking/BakingMaterials/ORM/ORM From Standard.tres" id="2_tyxxw"]
|
||||
|
||||
[resource]
|
||||
|
|
|
|||
|
|
@ -1,14 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="TextureCombiner" load_steps=2 format=3 uid="uid://bmesbkwqek8ck"]
|
||||
[gd_resource type="Resource" script_class="TextureCombiner" format=3 uid="uid://bmesbkwqek8ck"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://2srq0trsfhq1" path="res://addons/rokojori_action_library/Runtime/Procedural/Textures/TextureCombiner/TextureCombiner.cs" id="1_10cp2"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_10cp2")
|
||||
createMipmaps = true
|
||||
create = false
|
||||
autoCreate = false
|
||||
width = 1024
|
||||
height = 1024
|
||||
_creatingTexture = false
|
||||
_blockSize = 512
|
||||
metadata/_custom_type_script = "uid://2srq0trsfhq1"
|
||||
|
|
|
|||
|
|
@ -1,42 +1,29 @@
|
|||
[gd_resource type="Resource" script_class="TextureChannelMixerPreset" load_steps=7 format=3 uid="uid://bcswdpbt3yanm"]
|
||||
[gd_resource type="Resource" script_class="TextureChannelMixerPreset" format=3 uid="uid://bcswdpbt3yanm"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dae58ep6ml38n" path="res://addons/rokojori_action_library/Runtime/Procedural/Textures/ChannelMixer/TextureChanneMixelChannelSetting.cs" id="1_g25py"]
|
||||
[ext_resource type="Script" uid="uid://cixw1u0gkbovt" path="res://addons/rokojori_action_library/Runtime/Procedural/Textures/ChannelMixer/TextureChannelMixerPreset.cs" id="2_esgkr"]
|
||||
|
||||
[sub_resource type="Resource" id="Resource_cwohu"]
|
||||
script = ExtResource("1_g25py")
|
||||
isAssigned = true
|
||||
notAssignedValue = 1.0
|
||||
output_sRGB = true
|
||||
source_channel = 3
|
||||
source_sRGB = true
|
||||
metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
||||
|
||||
[sub_resource type="Resource" id="Resource_d3h5b"]
|
||||
script = ExtResource("1_g25py")
|
||||
isAssigned = false
|
||||
notAssignedValue = 0.0
|
||||
output_sRGB = true
|
||||
source_channel = 2
|
||||
source_sRGB = true
|
||||
metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
||||
|
||||
[sub_resource type="Resource" id="Resource_t47sh"]
|
||||
script = ExtResource("1_g25py")
|
||||
isAssigned = false
|
||||
notAssignedValue = 0.0
|
||||
output_sRGB = true
|
||||
source_channel = 1
|
||||
source_sRGB = true
|
||||
metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
||||
|
||||
[sub_resource type="Resource" id="Resource_idsat"]
|
||||
script = ExtResource("1_g25py")
|
||||
isAssigned = false
|
||||
notAssignedValue = 0.0
|
||||
output_sRGB = true
|
||||
source_channel = 0
|
||||
source_sRGB = true
|
||||
metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
||||
|
||||
[resource]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="TextureChannelMixerPreset" load_steps=7 format=3 uid="uid://dnqy2sbr145a5"]
|
||||
[gd_resource type="Resource" script_class="TextureChannelMixerPreset" format=3 uid="uid://dnqy2sbr145a5"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dae58ep6ml38n" path="res://addons/rokojori_action_library/Runtime/Procedural/Textures/ChannelMixer/TextureChanneMixelChannelSetting.cs" id="1_rj4fv"]
|
||||
[ext_resource type="Script" uid="uid://cixw1u0gkbovt" path="res://addons/rokojori_action_library/Runtime/Procedural/Textures/ChannelMixer/TextureChannelMixerPreset.cs" id="2_8vvu2"]
|
||||
|
|
@ -7,36 +7,22 @@
|
|||
script = ExtResource("1_rj4fv")
|
||||
isAssigned = false
|
||||
notAssignedValue = 1.0
|
||||
output_sRGB = true
|
||||
source_channel = 0
|
||||
source_sRGB = true
|
||||
metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
||||
|
||||
[sub_resource type="Resource" id="Resource_xa153"]
|
||||
script = ExtResource("1_rj4fv")
|
||||
isAssigned = true
|
||||
notAssignedValue = 0.0
|
||||
output_sRGB = true
|
||||
source_channel = 2
|
||||
source_sRGB = true
|
||||
metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
||||
|
||||
[sub_resource type="Resource" id="Resource_gqbnd"]
|
||||
script = ExtResource("1_rj4fv")
|
||||
isAssigned = false
|
||||
notAssignedValue = 0.0
|
||||
output_sRGB = true
|
||||
source_channel = 1
|
||||
source_sRGB = true
|
||||
metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
||||
|
||||
[sub_resource type="Resource" id="Resource_t7yfx"]
|
||||
script = ExtResource("1_rj4fv")
|
||||
isAssigned = false
|
||||
notAssignedValue = 0.0
|
||||
output_sRGB = true
|
||||
source_channel = 0
|
||||
source_sRGB = true
|
||||
metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
||||
|
||||
[resource]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="TextureChannelMixerPreset" load_steps=7 format=3 uid="uid://cah7aqecamuon"]
|
||||
[gd_resource type="Resource" script_class="TextureChannelMixerPreset" format=3 uid="uid://cah7aqecamuon"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dae58ep6ml38n" path="res://addons/rokojori_action_library/Runtime/Procedural/Textures/ChannelMixer/TextureChanneMixelChannelSetting.cs" id="1_ne34d"]
|
||||
[ext_resource type="Script" uid="uid://cixw1u0gkbovt" path="res://addons/rokojori_action_library/Runtime/Procedural/Textures/ChannelMixer/TextureChannelMixerPreset.cs" id="2_ml4ie"]
|
||||
|
|
@ -7,36 +7,21 @@
|
|||
script = ExtResource("1_ne34d")
|
||||
isAssigned = false
|
||||
notAssignedValue = 1.0
|
||||
output_sRGB = true
|
||||
source_channel = 0
|
||||
source_sRGB = true
|
||||
metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
||||
|
||||
[sub_resource type="Resource" id="Resource_a48r2"]
|
||||
script = ExtResource("1_ne34d")
|
||||
isAssigned = false
|
||||
notAssignedValue = 0.0
|
||||
output_sRGB = true
|
||||
source_channel = 0
|
||||
source_sRGB = true
|
||||
metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
||||
|
||||
[sub_resource type="Resource" id="Resource_ysxo1"]
|
||||
script = ExtResource("1_ne34d")
|
||||
isAssigned = true
|
||||
notAssignedValue = 0.0
|
||||
output_sRGB = true
|
||||
source_channel = 1
|
||||
source_sRGB = true
|
||||
metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
||||
|
||||
[sub_resource type="Resource" id="Resource_ecch3"]
|
||||
script = ExtResource("1_ne34d")
|
||||
isAssigned = false
|
||||
notAssignedValue = 0.0
|
||||
output_sRGB = true
|
||||
source_channel = 0
|
||||
source_sRGB = true
|
||||
metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
||||
|
||||
[resource]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="TextureChannelMixerPreset" load_steps=8 format=3 uid="uid://co8x14v8bg68h"]
|
||||
[gd_resource type="Resource" script_class="TextureChannelMixerPreset" format=3 uid="uid://co8x14v8bg68h"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dae58ep6ml38n" path="res://addons/rokojori_action_library/Runtime/Procedural/Textures/ChannelMixer/TextureChanneMixelChannelSetting.cs" id="1_urrp0"]
|
||||
[ext_resource type="Script" uid="uid://cixw1u0gkbovt" path="res://addons/rokojori_action_library/Runtime/Procedural/Textures/ChannelMixer/TextureChannelMixerPreset.cs" id="2_5golc"]
|
||||
|
|
@ -9,8 +9,6 @@ point_count = 2
|
|||
|
||||
[sub_resource type="Resource" id="Resource_tcfhe"]
|
||||
script = ExtResource("1_urrp0")
|
||||
isAssigned = true
|
||||
notAssignedValue = 0.0
|
||||
output_sRGB = false
|
||||
source_channel = 1
|
||||
source_sRGB = false
|
||||
|
|
@ -20,25 +18,15 @@ metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
|||
[sub_resource type="Resource" id="Resource_xxtsh"]
|
||||
script = ExtResource("1_urrp0")
|
||||
isAssigned = false
|
||||
notAssignedValue = 0.0
|
||||
output_sRGB = true
|
||||
source_channel = 0
|
||||
source_sRGB = true
|
||||
metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
||||
|
||||
[sub_resource type="Resource" id="Resource_xeyj2"]
|
||||
script = ExtResource("1_urrp0")
|
||||
isAssigned = false
|
||||
notAssignedValue = 0.0
|
||||
output_sRGB = true
|
||||
source_channel = 0
|
||||
source_sRGB = true
|
||||
metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
||||
|
||||
[sub_resource type="Resource" id="Resource_wtf83"]
|
||||
script = ExtResource("1_urrp0")
|
||||
isAssigned = true
|
||||
notAssignedValue = 0.0
|
||||
output_sRGB = false
|
||||
source_channel = 2
|
||||
source_sRGB = false
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="TextureChannelMixerPreset" load_steps=7 format=3 uid="uid://5atymi8i3ufe"]
|
||||
[gd_resource type="Resource" script_class="TextureChannelMixerPreset" format=3 uid="uid://5atymi8i3ufe"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dae58ep6ml38n" path="res://addons/rokojori_action_library/Runtime/Procedural/Textures/ChannelMixer/TextureChanneMixelChannelSetting.cs" id="1_jxt5h"]
|
||||
[ext_resource type="Script" uid="uid://cixw1u0gkbovt" path="res://addons/rokojori_action_library/Runtime/Procedural/Textures/ChannelMixer/TextureChannelMixerPreset.cs" id="2_h12ag"]
|
||||
|
|
@ -7,36 +7,20 @@
|
|||
script = ExtResource("1_jxt5h")
|
||||
isAssigned = false
|
||||
notAssignedValue = 1.0
|
||||
output_sRGB = true
|
||||
source_channel = 0
|
||||
source_sRGB = true
|
||||
metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
||||
|
||||
[sub_resource type="Resource" id="Resource_6sudk"]
|
||||
script = ExtResource("1_jxt5h")
|
||||
isAssigned = false
|
||||
notAssignedValue = 0.0
|
||||
output_sRGB = true
|
||||
source_channel = 0
|
||||
source_sRGB = true
|
||||
metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
||||
|
||||
[sub_resource type="Resource" id="Resource_qjaoh"]
|
||||
script = ExtResource("1_jxt5h")
|
||||
isAssigned = false
|
||||
notAssignedValue = 0.0
|
||||
output_sRGB = true
|
||||
source_channel = 0
|
||||
source_sRGB = true
|
||||
metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
||||
|
||||
[sub_resource type="Resource" id="Resource_4xjsl"]
|
||||
script = ExtResource("1_jxt5h")
|
||||
isAssigned = true
|
||||
notAssignedValue = 0.0
|
||||
output_sRGB = true
|
||||
source_channel = 0
|
||||
source_sRGB = true
|
||||
metadata/_custom_type_script = "uid://dae58ep6ml38n"
|
||||
|
||||
[resource]
|
||||
|
|
|
|||
|
|
@ -20,12 +20,12 @@ member = "amount"
|
|||
curve = SubResource("Curve_btbfg")
|
||||
metadata/_custom_type_script = "uid://dvvfvlutisecy"
|
||||
|
||||
[sub_resource type="Resource" id="Resource_ie6m2"]
|
||||
[sub_resource type="Resource" id="Resource_4xviq"]
|
||||
script = ExtResource("1_0ail8")
|
||||
|
||||
[sub_resource type="Resource" id="Resource_p64cs"]
|
||||
script = ExtResource("2_tc21q")
|
||||
owner = SubResource("Resource_ie6m2")
|
||||
owner = SubResource("Resource_4xviq")
|
||||
layer = ExtResource("2_4xviq")
|
||||
|
||||
[sub_resource type="Curve" id="Curve_7axlu"]
|
||||
|
|
@ -92,7 +92,7 @@ metadata/_custom_type_script = "uid://dvvfvlutisecy"
|
|||
|
||||
[sub_resource type="Resource" id="Resource_hpfyh"]
|
||||
script = ExtResource("2_tc21q")
|
||||
owner = SubResource("Resource_ie6m2")
|
||||
owner = SubResource("Resource_4xviq")
|
||||
layer = ExtResource("2_4xviq")
|
||||
|
||||
[sub_resource type="Gradient" id="Gradient_frwbc"]
|
||||
|
|
@ -136,7 +136,7 @@ metadata/_custom_type_script = "uid://dvvfvlutisecy"
|
|||
|
||||
[sub_resource type="Resource" id="Resource_gxlxg"]
|
||||
script = ExtResource("2_tc21q")
|
||||
owner = SubResource("Resource_ie6m2")
|
||||
owner = SubResource("Resource_4xviq")
|
||||
layer = ExtResource("2_4xviq")
|
||||
|
||||
[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_4n83u"]
|
||||
|
|
@ -173,7 +173,7 @@ metadata/_custom_type_script = "uid://balixgskgouhm"
|
|||
|
||||
[sub_resource type="Resource" id="Resource_3tnad"]
|
||||
script = ExtResource("2_tc21q")
|
||||
owner = SubResource("Resource_ie6m2")
|
||||
owner = SubResource("Resource_4xviq")
|
||||
layer = ExtResource("2_4xviq")
|
||||
|
||||
[sub_resource type="CompositorEffect" id="CompositorEffect_tgjf5"]
|
||||
|
|
|
|||
|
|
@ -1,13 +1,8 @@
|
|||
[gd_resource type="Resource" script_class="GamePadAxisSensor" load_steps=2 format=3 uid="uid://cyyy0ycusgil3"]
|
||||
[gd_resource type="Resource" script_class="GamePadAxisSensor" format=3 uid="uid://cyyy0ycusgil3"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadAxisSensor.cs" id="1_wej7c"]
|
||||
[ext_resource type="Script" uid="uid://cb81s7ud1de7h" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadAxisSensor.cs" id="1_wej7c"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_wej7c")
|
||||
axis = 1
|
||||
type = 0
|
||||
continous = true
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,13 +1,8 @@
|
|||
[gd_resource type="Resource" script_class="GamePadAxisSensor" load_steps=2 format=3 uid="uid://5gnh5dmv1p21"]
|
||||
[gd_resource type="Resource" script_class="GamePadAxisSensor" format=3 uid="uid://5gnh5dmv1p21"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadAxisSensor.cs" id="1_t42o5"]
|
||||
[ext_resource type="Script" uid="uid://cb81s7ud1de7h" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadAxisSensor.cs" id="1_t42o5"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_t42o5")
|
||||
axis = 0
|
||||
type = 1
|
||||
continous = true
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,13 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="GamePadAxisSensor" load_steps=2 format=3 uid="uid://dsrf03g6mgu5t"]
|
||||
[gd_resource type="Resource" script_class="GamePadAxisSensor" format=3 uid="uid://dsrf03g6mgu5t"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadAxisSensor.cs" id="1_y2djh"]
|
||||
[ext_resource type="Script" uid="uid://cb81s7ud1de7h" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadAxisSensor.cs" id="1_y2djh"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_y2djh")
|
||||
axis = 0
|
||||
type = 0
|
||||
continous = true
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="GamePadAxisSensor" load_steps=2 format=3 uid="uid://dbha8dmhxgm05"]
|
||||
[gd_resource type="Resource" script_class="GamePadAxisSensor" format=3 uid="uid://dbha8dmhxgm05"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://cb81s7ud1de7h" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadAxisSensor.cs" id="1_yy4wi"]
|
||||
|
||||
|
|
@ -7,7 +7,3 @@ script = ExtResource("1_yy4wi")
|
|||
axis = 1
|
||||
type = 1
|
||||
continous = true
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,13 +1,8 @@
|
|||
[gd_resource type="Resource" script_class="GamePadAxisSensor" load_steps=2 format=3 uid="uid://6emg8n3qxhlv"]
|
||||
[gd_resource type="Resource" script_class="GamePadAxisSensor" format=3 uid="uid://6emg8n3qxhlv"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadAxisSensor.cs" id="1_xf3mc"]
|
||||
[ext_resource type="Script" uid="uid://cb81s7ud1de7h" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadAxisSensor.cs" id="1_xf3mc"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_xf3mc")
|
||||
axis = 3
|
||||
type = 0
|
||||
continous = true
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,13 +1,9 @@
|
|||
[gd_resource type="Resource" script_class="GamePadAxisSensor" load_steps=2 format=3 uid="uid://b16mtcrpm1f6i"]
|
||||
[gd_resource type="Resource" script_class="GamePadAxisSensor" format=3 uid="uid://b16mtcrpm1f6i"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadAxisSensor.cs" id="1_22ykp"]
|
||||
[ext_resource type="Script" uid="uid://cb81s7ud1de7h" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadAxisSensor.cs" id="1_22ykp"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_22ykp")
|
||||
axis = 2
|
||||
type = 1
|
||||
continous = true
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,13 +1,8 @@
|
|||
[gd_resource type="Resource" script_class="GamePadAxisSensor" load_steps=2 format=3 uid="uid://d05w143o644d3"]
|
||||
[gd_resource type="Resource" script_class="GamePadAxisSensor" format=3 uid="uid://d05w143o644d3"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadAxisSensor.cs" id="1_pxirv"]
|
||||
[ext_resource type="Script" uid="uid://cb81s7ud1de7h" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadAxisSensor.cs" id="1_pxirv"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_pxirv")
|
||||
axis = 2
|
||||
type = 0
|
||||
continous = true
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="GamePadAxisSensor" load_steps=2 format=3 uid="uid://ck7woerh7mhp"]
|
||||
[gd_resource type="Resource" script_class="GamePadAxisSensor" format=3 uid="uid://ck7woerh7mhp"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://cb81s7ud1de7h" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadAxisSensor.cs" id="1_nrdau"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,13 +1,8 @@
|
|||
[gd_resource type="Resource" script_class="GamePadAxisSensor" load_steps=2 format=3 uid="uid://cs12bjge707ri"]
|
||||
[gd_resource type="Resource" script_class="GamePadAxisSensor" format=3 uid="uid://cs12bjge707ri"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadAxisSensor.cs" id="1_ow83o"]
|
||||
[ext_resource type="Script" uid="uid://cb81s7ud1de7h" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadAxisSensor.cs" id="1_ow83o"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_ow83o")
|
||||
axis = 4
|
||||
type = 0
|
||||
continous = true
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,13 +1,8 @@
|
|||
[gd_resource type="Resource" script_class="GamePadAxisSensor" load_steps=2 format=3 uid="uid://cy3ja8squnin6"]
|
||||
[gd_resource type="Resource" script_class="GamePadAxisSensor" format=3 uid="uid://cy3ja8squnin6"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadAxisSensor.cs" id="1_63g6c"]
|
||||
[ext_resource type="Script" uid="uid://cb81s7ud1de7h" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadAxisSensor.cs" id="1_63g6c"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_63g6c")
|
||||
axis = 5
|
||||
type = 0
|
||||
continous = true
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,12 +1,6 @@
|
|||
[gd_resource type="Resource" script_class="GamePadButtonSensor" load_steps=2 format=3 uid="uid://dffkdky8iowro"]
|
||||
[gd_resource type="Resource" script_class="GamePadButtonSensor" format=3 uid="uid://dffkdky8iowro"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_yb7gd"]
|
||||
[ext_resource type="Script" uid="uid://0ji11kv86cpk" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_yb7gd"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_yb7gd")
|
||||
button = 0
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,12 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="GamePadButtonSensor" load_steps=2 format=3 uid="uid://cvjlv07g2nkfw"]
|
||||
[gd_resource type="Resource" script_class="GamePadButtonSensor" format=3 uid="uid://cvjlv07g2nkfw"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_pyal4"]
|
||||
[ext_resource type="Script" uid="uid://0ji11kv86cpk" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_pyal4"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_pyal4")
|
||||
button = 1
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,12 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="GamePadButtonSensor" load_steps=2 format=3 uid="uid://csxxb6pbaqmgf"]
|
||||
[gd_resource type="Resource" script_class="GamePadButtonSensor" format=3 uid="uid://csxxb6pbaqmgf"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_54oni"]
|
||||
[ext_resource type="Script" uid="uid://0ji11kv86cpk" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_54oni"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_54oni")
|
||||
button = 4
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,12 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="GamePadButtonSensor" load_steps=2 format=3 uid="uid://c4gdihswmjeq2"]
|
||||
[gd_resource type="Resource" script_class="GamePadButtonSensor" format=3 uid="uid://c4gdihswmjeq2"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_hh0su"]
|
||||
[ext_resource type="Script" uid="uid://0ji11kv86cpk" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_hh0su"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_hh0su")
|
||||
button = 5
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,12 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="GamePadButtonSensor" load_steps=2 format=3 uid="uid://crx0sty5vqkdp"]
|
||||
[gd_resource type="Resource" script_class="GamePadButtonSensor" format=3 uid="uid://crx0sty5vqkdp"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_j48k6"]
|
||||
[ext_resource type="Script" uid="uid://0ji11kv86cpk" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_j48k6"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_j48k6")
|
||||
button = 6
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,12 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="GamePadButtonSensor" load_steps=2 format=3 uid="uid://c5kh02wmyjjt7"]
|
||||
[gd_resource type="Resource" script_class="GamePadButtonSensor" format=3 uid="uid://c5kh02wmyjjt7"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_424mq"]
|
||||
[ext_resource type="Script" uid="uid://0ji11kv86cpk" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_424mq"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_424mq")
|
||||
button = 15
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,8 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="GamePadButtonSensor" load_steps=2 format=3 uid="uid://jvwwq6guhl77"]
|
||||
[gd_resource type="Resource" script_class="GamePadButtonSensor" format=3 uid="uid://jvwwq6guhl77"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://0ji11kv86cpk" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_4da72"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_4da72")
|
||||
button = 2
|
||||
continous = false
|
||||
|
|
|
|||
|
|
@ -1,8 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="GamePadButtonSensor" load_steps=2 format=3 uid="uid://dpwq5eyla8rob"]
|
||||
[gd_resource type="Resource" script_class="GamePadButtonSensor" format=3 uid="uid://dpwq5eyla8rob"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://0ji11kv86cpk" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_yv1r0"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_yv1r0")
|
||||
button = 3
|
||||
continous = false
|
||||
|
|
|
|||
|
|
@ -1,12 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="GamePadButtonSensor" load_steps=2 format=3 uid="uid://cm480d0xgr10c"]
|
||||
[gd_resource type="Resource" script_class="GamePadButtonSensor" format=3 uid="uid://cm480d0xgr10c"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_proop"]
|
||||
[ext_resource type="Script" uid="uid://0ji11kv86cpk" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_proop"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_proop")
|
||||
button = 9
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,12 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="GamePadButtonSensor" load_steps=2 format=3 uid="uid://dxtx0nr4ffkj"]
|
||||
[gd_resource type="Resource" script_class="GamePadButtonSensor" format=3 uid="uid://dxtx0nr4ffkj"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_lr33p"]
|
||||
[ext_resource type="Script" uid="uid://0ji11kv86cpk" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_lr33p"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_lr33p")
|
||||
button = 3
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,12 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="GamePadButtonSensor" load_steps=2 format=3 uid="uid://qeovblfrqo7k"]
|
||||
[gd_resource type="Resource" script_class="GamePadButtonSensor" format=3 uid="uid://qeovblfrqo7k"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_haxly"]
|
||||
[ext_resource type="Script" uid="uid://0ji11kv86cpk" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_haxly"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_haxly")
|
||||
button = 13
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,12 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="GamePadButtonSensor" load_steps=2 format=3 uid="uid://bwe6ln2b4f6fv"]
|
||||
[gd_resource type="Resource" script_class="GamePadButtonSensor" format=3 uid="uid://bwe6ln2b4f6fv"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_6u2r8"]
|
||||
[ext_resource type="Script" uid="uid://0ji11kv86cpk" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_6u2r8"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_6u2r8")
|
||||
button = 14
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,12 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="GamePadButtonSensor" load_steps=2 format=3 uid="uid://cituiuw6e1fho"]
|
||||
[gd_resource type="Resource" script_class="GamePadButtonSensor" format=3 uid="uid://cituiuw6e1fho"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_upstx"]
|
||||
[ext_resource type="Script" uid="uid://0ji11kv86cpk" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_upstx"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_upstx")
|
||||
button = 9
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,12 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="GamePadButtonSensor" load_steps=2 format=3 uid="uid://jbud1yjmxysm"]
|
||||
[gd_resource type="Resource" script_class="GamePadButtonSensor" format=3 uid="uid://jbud1yjmxysm"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_7gltt"]
|
||||
[ext_resource type="Script" uid="uid://0ji11kv86cpk" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_7gltt"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_7gltt")
|
||||
button = 10
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,12 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="GamePadButtonSensor" load_steps=2 format=3 uid="uid://wdxsc6tdnd2f"]
|
||||
[gd_resource type="Resource" script_class="GamePadButtonSensor" format=3 uid="uid://wdxsc6tdnd2f"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_cg8xn"]
|
||||
[ext_resource type="Script" uid="uid://0ji11kv86cpk" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_cg8xn"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_cg8xn")
|
||||
button = 7
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,12 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="GamePadButtonSensor" load_steps=2 format=3 uid="uid://6ljt7j7pqmb2"]
|
||||
[gd_resource type="Resource" script_class="GamePadButtonSensor" format=3 uid="uid://6ljt7j7pqmb2"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_xn6c2"]
|
||||
[ext_resource type="Script" uid="uid://0ji11kv86cpk" path="res://addons/rokojori_action_library/Runtime/Sensors/GamePadButtonSensor.cs" id="1_xn6c2"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_xn6c2")
|
||||
button = 10
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="SensorGroup" load_steps=28 format=3 uid="uid://bv40lrpi3831d"]
|
||||
[gd_resource type="Resource" script_class="SensorGroup" format=3 uid="uid://bv40lrpi3831d"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://da4bhmvkury2" path="res://addons/rokojori_action_library/Runtime/Sensors/SensorGroup.cs" id="1_k6ypa"]
|
||||
[ext_resource type="Resource" uid="uid://5gnh5dmv1p21" path="res://addons/rokojori_action_library/Runtime/Sensors/Default-Sensors/Gamepad/Axis/Left-Joystick Left -X.tres" id="2_1ywmr"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="SensorGroup" load_steps=20 format=3 uid="uid://c5rvf5v86ybks"]
|
||||
[gd_resource type="Resource" script_class="SensorGroup" format=3 uid="uid://c5rvf5v86ybks"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://da4bhmvkury2" path="res://addons/rokojori_action_library/Runtime/Sensors/SensorGroup.cs" id="1_168ay"]
|
||||
[ext_resource type="Resource" uid="uid://ci42d04kv03yx" path="res://addons/rokojori_action_library/Runtime/Sensors/Default-Sensors/Keyboard & Mouse/Mouse/Mouse-Button Left.tres" id="2_fxahp"]
|
||||
|
|
|
|||
|
|
@ -1,16 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="MouseButtonSensor" load_steps=2 format=3 uid="uid://ci42d04kv03yx"]
|
||||
[gd_resource type="Resource" script_class="MouseButtonSensor" format=3 uid="uid://ci42d04kv03yx"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/MouseButtonSensor.cs" id="1_45faa"]
|
||||
[ext_resource type="Script" uid="uid://buajgl5pnktwj" path="res://addons/rokojori_action_library/Runtime/Sensors/MouseButtonSensor.cs" id="1_45faa"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_45faa")
|
||||
button = 1
|
||||
ctrlHold = 2
|
||||
altHold = 2
|
||||
shiftHold = 2
|
||||
modifiersMode = 0
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="MouseButtonSensor" load_steps=2 format=3 uid="uid://b8u374emi528p"]
|
||||
[gd_resource type="Resource" script_class="MouseButtonSensor" format=3 uid="uid://b8u374emi528p"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://buajgl5pnktwj" path="res://addons/rokojori_action_library/Runtime/Sensors/MouseButtonSensor.cs" id="1_baalg"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="MouseButtonSensor" load_steps=2 format=3 uid="uid://cbqyav0cnehoq"]
|
||||
[gd_resource type="Resource" script_class="MouseButtonSensor" format=3 uid="uid://cbqyav0cnehoq"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://buajgl5pnktwj" path="res://addons/rokojori_action_library/Runtime/Sensors/MouseButtonSensor.cs" id="1_4clle"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="MouseMotionDelta" load_steps=2 format=3 uid="uid://dtfgwd1wlk344"]
|
||||
[gd_resource type="Resource" script_class="MouseMotionDelta" format=3 uid="uid://dtfgwd1wlk344"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://d02e87hinqekt" path="res://addons/rokojori_action_library/Runtime/Sensors/MouseMotionDelta.cs" id="1_g51ig"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="MouseMotionDelta" load_steps=2 format=3 uid="uid://bu7t2i36n7m2x"]
|
||||
[gd_resource type="Resource" script_class="MouseMotionDelta" format=3 uid="uid://bu7t2i36n7m2x"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://d02e87hinqekt" path="res://addons/rokojori_action_library/Runtime/Sensors/MouseMotionDelta.cs" id="1_o6efp"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="MouseMotionDelta" load_steps=2 format=3 uid="uid://cljc42e8pggxc"]
|
||||
[gd_resource type="Resource" script_class="MouseMotionDelta" format=3 uid="uid://cljc42e8pggxc"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://d02e87hinqekt" path="res://addons/rokojori_action_library/Runtime/Sensors/MouseMotionDelta.cs" id="1_vp3ad"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="MouseMotionDelta" load_steps=2 format=3 uid="uid://u6sevemw8cyi"]
|
||||
[gd_resource type="Resource" script_class="MouseMotionDelta" format=3 uid="uid://u6sevemw8cyi"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://d02e87hinqekt" path="res://addons/rokojori_action_library/Runtime/Sensors/MouseMotionDelta.cs" id="1_cbi4q"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="MouseScreenRelative" load_steps=2 format=3 uid="uid://dqwqjna27pr6m"]
|
||||
[gd_resource type="Resource" script_class="MouseScreenRelative" format=3 uid="uid://dqwqjna27pr6m"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://b4hxfawlk33t3" path="res://addons/rokojori_action_library/Runtime/Sensors/MouseScreenRelative.cs" id="1_axjcx"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="MouseScreenRelative" load_steps=2 format=3 uid="uid://bc26l0nbfbvmr"]
|
||||
[gd_resource type="Resource" script_class="MouseScreenRelative" format=3 uid="uid://bc26l0nbfbvmr"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://b4hxfawlk33t3" path="res://addons/rokojori_action_library/Runtime/Sensors/MouseScreenRelative.cs" id="1_dsofh"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="MouseScreenRelative" load_steps=2 format=3 uid="uid://dbsacndnvleas"]
|
||||
[gd_resource type="Resource" script_class="MouseScreenRelative" format=3 uid="uid://dbsacndnvleas"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://b4hxfawlk33t3" path="res://addons/rokojori_action_library/Runtime/Sensors/MouseScreenRelative.cs" id="1_2bdya"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="MouseScreenRelative" load_steps=2 format=3 uid="uid://cg1jqnpfx4qqr"]
|
||||
[gd_resource type="Resource" script_class="MouseScreenRelative" format=3 uid="uid://cg1jqnpfx4qqr"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://b4hxfawlk33t3" path="res://addons/rokojori_action_library/Runtime/Sensors/MouseScreenRelative.cs" id="1_oulvd"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,16 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="MouseButtonSensor" load_steps=2 format=3 uid="uid://chwstub7bnlpp"]
|
||||
[gd_resource type="Resource" script_class="MouseButtonSensor" format=3 uid="uid://chwstub7bnlpp"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/MouseButtonSensor.cs" id="1_uh7gk"]
|
||||
[ext_resource type="Script" uid="uid://buajgl5pnktwj" path="res://addons/rokojori_action_library/Runtime/Sensors/MouseButtonSensor.cs" id="1_uh7gk"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_uh7gk")
|
||||
button = 5
|
||||
ctrlHold = 2
|
||||
altHold = 2
|
||||
shiftHold = 2
|
||||
modifiersMode = 0
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,16 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="MouseButtonSensor" load_steps=2 format=3 uid="uid://b52horrdbgyaa"]
|
||||
[gd_resource type="Resource" script_class="MouseButtonSensor" format=3 uid="uid://b52horrdbgyaa"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/MouseButtonSensor.cs" id="1_0v7by"]
|
||||
[ext_resource type="Script" uid="uid://buajgl5pnktwj" path="res://addons/rokojori_action_library/Runtime/Sensors/MouseButtonSensor.cs" id="1_0v7by"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_0v7by")
|
||||
button = 4
|
||||
ctrlHold = 2
|
||||
altHold = 2
|
||||
shiftHold = 2
|
||||
modifiersMode = 0
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,17 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="KeySensor" load_steps=2 format=3 uid="uid://ds1rrltuj0mse"]
|
||||
[gd_resource type="Resource" script_class="KeySensor" format=3 uid="uid://ds1rrltuj0mse"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/KeySensor.cs" id="1_r0t8l"]
|
||||
[ext_resource type="Script" uid="uid://bjo1usdu525m" path="res://addons/rokojori_action_library/Runtime/Sensors/KeySensor.cs" id="1_r0t8l"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_r0t8l")
|
||||
key = 69
|
||||
keyLocation = 0
|
||||
ctrlHold = 2
|
||||
altHold = 2
|
||||
shiftHold = 2
|
||||
modifiersMode = 0
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,16 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="KeySensor" load_steps=2 format=3 uid="uid://dwigqkllvj8dq"]
|
||||
[gd_resource type="Resource" script_class="KeySensor" format=3 uid="uid://dwigqkllvj8dq"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Sensors/KeySensor.cs" id="1_7vkga"]
|
||||
[ext_resource type="Script" uid="uid://bjo1usdu525m" path="res://addons/rokojori_action_library/Runtime/Sensors/KeySensor.cs" id="1_7vkga"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_7vkga")
|
||||
key = 81
|
||||
ctrlHold = 2
|
||||
altHold = 2
|
||||
shiftHold = 2
|
||||
modifiersMode = 0
|
||||
continous = false
|
||||
_value = 0.0
|
||||
_wasActive = false
|
||||
_active = false
|
||||
_activeTreshold = 0.5
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="CombineSensor" load_steps=3 format=3 uid="uid://ccff1bj35qcl0"]
|
||||
[gd_resource type="Resource" script_class="CombineSensor" format=3 uid="uid://ccff1bj35qcl0"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://eid0qnlvq4n1" path="res://addons/rokojori_action_library/Runtime/Sensors/CombineSensor.cs" id="1_8e2n5"]
|
||||
[ext_resource type="Resource" uid="uid://jbud1yjmxysm" path="res://addons/rokojori_action_library/Runtime/Sensors/Default-Sensors/Gamepad/Buttons/Shoulder Right, RB, R1.tres" id="2_m7ahn"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="CombineSensor" load_steps=3 format=3 uid="uid://dtykoghdisv37"]
|
||||
[gd_resource type="Resource" script_class="CombineSensor" format=3 uid="uid://dtykoghdisv37"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://eid0qnlvq4n1" path="res://addons/rokojori_action_library/Runtime/Sensors/CombineSensor.cs" id="1_r1ua5"]
|
||||
[ext_resource type="Resource" uid="uid://cituiuw6e1fho" path="res://addons/rokojori_action_library/Runtime/Sensors/Default-Sensors/Gamepad/Buttons/Shoulder Left, LB, L1.tres" id="2_in8jh"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="SensorGroup" load_steps=10 format=3 uid="uid://ca1e6qd423hg"]
|
||||
[gd_resource type="Resource" script_class="SensorGroup" format=3 uid="uid://ca1e6qd423hg"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://da4bhmvkury2" path="res://addons/rokojori_action_library/Runtime/Sensors/SensorGroup.cs" id="1_n7t1q"]
|
||||
[ext_resource type="Resource" uid="uid://dfvs7wbygwmhk" path="res://addons/rokojori_action_library/Runtime/Sensors/Default-Sensors/UI/Sensors/UI Cancel.tres" id="2_yi61e"]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[gd_resource type="Resource" script_class="ColorPropertyName" load_steps=2 format=3 uid="uid://cwbo0avyyq0t"]
|
||||
[gd_resource type="Resource" script_class="ColorPropertyName" format=3 uid="uid://cwbo0avyyq0t"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/ColorPropertyName.cs" id="1_qmhdp"]
|
||||
[ext_resource type="Script" uid="uid://y2p0r8c5rs45" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/ColorPropertyName.cs" id="1_qmhdp"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_qmhdp")
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Resource" script_class="ColorPropertyName" load_steps=2 format=3 uid="uid://b5c4ci5xocowk"]
|
||||
[gd_resource type="Resource" script_class="ColorPropertyName" format=3 uid="uid://b5c4ci5xocowk"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://y2p0r8c5rs45" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/ColorPropertyName.cs" id="1_xujmj"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[gd_resource type="Resource" script_class="FloatPropertyName" load_steps=2 format=3 uid="uid://bja8pltfjyt3x"]
|
||||
[gd_resource type="Resource" script_class="FloatPropertyName" format=3 uid="uid://bja8pltfjyt3x"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/FloatPropertyName.cs" id="1_43g4x"]
|
||||
[ext_resource type="Script" uid="uid://jqgdm3r2u8xq" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/FloatPropertyName.cs" id="1_43g4x"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_43g4x")
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[gd_resource type="Resource" script_class="FloatPropertyName" load_steps=2 format=3 uid="uid://dy4yrg7cbx84g"]
|
||||
[gd_resource type="Resource" script_class="FloatPropertyName" format=3 uid="uid://dy4yrg7cbx84g"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/FloatPropertyName.cs" id="1_k46dx"]
|
||||
[ext_resource type="Script" uid="uid://jqgdm3r2u8xq" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/FloatPropertyName.cs" id="1_k46dx"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_k46dx")
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[gd_resource type="Resource" script_class="FloatPropertyName" load_steps=2 format=3 uid="uid://c6actnjj8i8o5"]
|
||||
[gd_resource type="Resource" script_class="FloatPropertyName" format=3 uid="uid://c6actnjj8i8o5"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/FloatPropertyName.cs" id="1_4k8vm"]
|
||||
[ext_resource type="Script" uid="uid://jqgdm3r2u8xq" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/FloatPropertyName.cs" id="1_4k8vm"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_4k8vm")
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
[gd_resource type="Resource" script_class="FloatPropertyName" load_steps=2 format=3 uid="uid://dn4k668h72myc"]
|
||||
[gd_resource type="Resource" script_class="FloatPropertyName" format=3 uid="uid://dn4k668h72myc"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/FloatPropertyName.cs" id="1_qnqwx"]
|
||||
[ext_resource type="Script" uid="uid://jqgdm3r2u8xq" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/FloatPropertyName.cs" id="1_qnqwx"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_qnqwx")
|
||||
propertyName = ""
|
||||
|
|
|
|||
|
|
@ -1,7 +1,3 @@
|
|||
[gd_resource type="Resource" script_class="Texture2DPropertyName" load_steps=2 format=3 uid="uid://cow6rei03x5bs"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Texture2DPropertyName.cs" id="1_ptfhg"]
|
||||
[gd_resource type="Resource" format=3 uid="uid://cow6rei03x5bs"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_ptfhg")
|
||||
propertyName = "ao_texture"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[gd_resource type="Resource" script_class="Texture2DPropertyName" load_steps=2 format=3 uid="uid://dldbju3x0x2ow"]
|
||||
[gd_resource type="Resource" script_class="Sampler2DPropertyName" format=3 uid="uid://dldbju3x0x2ow"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://bsreukpi8eiyy" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Texture2DPropertyName.cs" id="1_d1083"]
|
||||
[ext_resource type="Script" uid="uid://bsreukpi8eiyy" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Sampler2DPropertyName.cs" id="1_d1083"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_d1083")
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue