Files
sbox-public/game/addons/tools/Code/Scene/SceneView/DropObjects/TextureDropObject.cs
s&box team 71f266059a Open source release
This commit imports the C# engine code and game files, excluding C++ source code.

[Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
2025-11-24 09:05:18 +00:00

109 lines
2.7 KiB
C#

using System.Threading;
namespace Editor;
[DropObject( "texture", "vtex", "vtex_c", "png", "jpg", "jpeg", "tga", "ies", "webp" )]
partial class TextureDropObject : BaseDropObject
{
Texture texture;
float aspect = 1f;
protected override async Task Initialize( string dragData, CancellationToken token )
{
Asset asset = await InstallAsset( dragData, token );
if ( asset is null )
return;
if ( token.IsCancellationRequested )
return;
PackageStatus = "Loading Texture";
if ( asset.Path.EndsWith( "vtex" ) || asset.Path.EndsWith( "vtex_c" ) )
{
// Load texture asset
var texturePath = System.IO.Path.ChangeExtension( dragData, "vtex_c" );
var textureAsset = AssetSystem.FindByPath( texturePath );
if ( textureAsset is not null )
{
asset = textureAsset;
texture = asset.LoadResource<Texture>();
}
}
else
{
// Load image file
var imageAsset = AssetSystem.FindByPath( dragData );
texture = Texture.Load( imageAsset.RelativePath );
}
PackageStatus = null;
aspect = (float)texture.Height / texture.Width;
if ( texture.HasAnimatedSequences ) aspect = 0f;
}
public override void OnUpdate()
{
using var scope = Gizmo.Scope( "DropObject", traceTransform );
Gizmo.Draw.Color = Color.White;
if ( texture is not null && aspect != 0 )
{
Gizmo.Draw.Sprite( Vector3.Zero, new Vector2( 10f, 10f * aspect ), texture, true );
}
else
{
Gizmo.Draw.Color = Color.White.WithAlpha( 0.3f );
Gizmo.Draw.Sprite( Bounds.Center, 16, "materials/gizmo/downloads.png" );
}
if ( !string.IsNullOrWhiteSpace( PackageStatus ) )
{
Gizmo.Draw.Text( PackageStatus, new Transform( Bounds.Center ), "Inter", 14 * Application.DpiScale );
}
}
public override async Task OnDrop()
{
await WaitForLoad();
if ( texture is null )
return;
using var scene = SceneEditorSession.Scope();
using ( SceneEditorSession.Active.UndoScope( "Drop Texture" ).WithGameObjectCreations().Push() )
{
GameObject = new GameObject();
GameObject.Name = texture.ResourceName;
GameObject.WorldTransform = traceTransform;
var spriteComponent = GameObject.Components.GetOrCreate<SpriteRenderer>();
spriteComponent.Sprite = CreateSpriteFromTexture( texture );
EditorScene.Selection.Clear();
EditorScene.Selection.Add( GameObject );
}
}
Sprite CreateSpriteFromTexture( Texture texture )
{
var sprite = EditorTypeLibrary.Create<Sprite>( "Sprite" );
sprite.Animations = [
new Sprite.Animation()
{
Name = "Default",
Frames = [ new Sprite.Frame { Texture = texture } ]
}
];
sprite.EmbeddedResource = new()
{
ResourceCompiler = "embed",
Data = sprite?.EmbeddedResource?.Data ?? new()
};
return sprite;
}
}