did things
This commit is contained in:
18
support_files/SteamAudioEditorPlugin.gd
Normal file
18
support_files/SteamAudioEditorPlugin.gd
Normal file
@@ -0,0 +1,18 @@
|
||||
@tool
|
||||
extends EditorPlugin
|
||||
|
||||
const AUTOLOAD_NAME = "STEAM_AUDIO"
|
||||
func _enable_plugin() -> void:
|
||||
add_autoload_singleton(AUTOLOAD_NAME,"res://addons/SteamAudioGodot/steam_audio_manager.tscn")
|
||||
|
||||
func _enter_tree() -> void:
|
||||
# Initialization of the plugin goes here.
|
||||
pass
|
||||
|
||||
func _exit_tree() -> void:
|
||||
# Clean-up of the plugin goes here.
|
||||
pass
|
||||
|
||||
func _disable_plugin() -> void:
|
||||
remove_autoload_singleton(AUTOLOAD_NAME)
|
||||
|
||||
7
support_files/plugin.cfg
Normal file
7
support_files/plugin.cfg
Normal file
@@ -0,0 +1,7 @@
|
||||
[plugin]
|
||||
|
||||
name="Steam Audio Godot"
|
||||
description="adds Steam Audio to Godot"
|
||||
author="The River Nyx"
|
||||
version=""
|
||||
script="SteamAudioEditorPlugin.gd"
|
||||
3
support_files/steam_audio_manager.tscn
Normal file
3
support_files/steam_audio_manager.tscn
Normal file
@@ -0,0 +1,3 @@
|
||||
[gd_scene load_steps=0 format=3 uid="uid://b28pa3dtdpc8d"]
|
||||
|
||||
[node name="SteamAudio" type="SteamAudio"]
|
||||
Reference in New Issue
Block a user