Skip to content
This repository was archived by the owner on Jan 3, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Dependencies.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ IncludeDir["SPIRV_Cross"] = "%{wks.location}/StarEngine/vendor/SPIRV-Cross"
IncludeDir["VulkanSDK"] = "%{VULKAN_SDK}/Include"
IncludeDir["msdfgen"] = "%{wks.location}/StarEngine/vendor/msdf-atlas-gen/msdfgen"
IncludeDir["msdf_atlas_gen"] = "%{wks.location}/StarEngine/vendor/msdf-atlas-gen/msdf-atlas-gen"
IncludeDir["miniaudio"] = "%{wks.location}/StarEngine/vendor/miniaudio/include"

LibraryDir = {}

Expand Down
3 changes: 2 additions & 1 deletion Sandbox/premake5.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ project "Sandbox"
"%{wks.location}/StarEngine/src",
"%{wks.location}/StarEngine/vendor",
"%{IncludeDir.glm}",
"%{IncludeDir.entt}"
"%{IncludeDir.entt}",
"%{IncludeDir.miniaudio}"
}

links
Expand Down
10 changes: 5 additions & 5 deletions StarEditor/SandboxProject/Assets/AssetRegistry.ser
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
AssetRegistry:
- Handle: 9263618904997247981
FilePath: Textures/starLogo.png
Type: AssetType::Texture2D
- Handle: 10448957311305808839
- Handle: 5698620207532946169
FilePath: Audio/fart-01.wav
Type: Audio
- Handle: 7305845728380112481
FilePath: Scenes/Physics2D.starscene
Type: AssetType::Scene
Type: Scene
Binary file not shown.
37 changes: 27 additions & 10 deletions StarEditor/SandboxProject/Assets/Scenes/3D Cube.starscene
Original file line number Diff line number Diff line change
Expand Up @@ -7,39 +7,56 @@ Entities:
Translation: [0, 0.5, -0.5]
Rotation: [-1.57079637, 0, 0]
Scale: [1, 1, 1]
CameraComponent:
Camera:
ProjectionType: 0
PerspectiveFOV: 0.785398185
PerspectiveNear: 0.00999999978
PerspectiveFar: 1000
OrthographicSize: 10
OrthographicNear: -1
OrthographicFar: 1
Primary: true
FixedAspectRatio: false
SpriteRendererComponent:
Color: [0, 1, 0, 1]
TextureHandle: 0
TilingFactor: 1
- Entity: 12837192831273
TagComponent:
Tag: Left
TransformComponent:
Translation: [-0.5, 0, -0.5]
Rotation: [0, -1.57079637, 0]
Translation: [0, 0, 0]
Rotation: [0, 0, 0]
Scale: [1, 1, 1]
SpriteRendererComponent:
Color: [1, 0.0117647061, 0, 1]
Color: [0, 0, 1, 1]
TextureHandle: 0
TilingFactor: 1
- Entity: 12837192831273
TagComponent:
Tag: Right
TransformComponent:
Translation: [0, 0, 0]
Rotation: [0, 0, 0]
Translation: [0.5, 0, -0.5]
Rotation: [0, 1.57079637, 0]
Scale: [1, 1, 1]
SpriteRendererComponent:
Color: [0, 0, 1, 1]
Color: [1, 0.00392156886, 0, 1]
TextureHandle: 0
TilingFactor: 1
- Entity: 12837192831273
TagComponent:
Tag: Camera
TransformComponent:
Translation: [-2.20000005, 1.29999995, 2.0999999]
Rotation: [-0.328121871, -0.71907568, -0.00523598772]
Translation: [6.4000001, -0.5, 20.1000004]
Rotation: [0, 0.595157266, 0]
Scale: [1, 1, 1]
CameraComponent:
Camera:
ProjectionType: 0
PerspectiveFOV: 0.785398185
PerspectiveFOV: 1.88495553
PerspectiveNear: 0.00999999978
PerspectiveFar: 1000
PerspectiveFar: 1202
OrthographicSize: 10
OrthographicNear: -1
OrthographicFar: 1
Expand Down
23 changes: 23 additions & 0 deletions StarEditor/SandboxProject/Assets/Scenes/Physics2D.starscene
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ Entities:
OrthographicFar: 1
Primary: true
FixedAspectRatio: false
AudioListenerComponent:
Active: true
ConeInnerAngle: 6.28318548
ConeOuterAngle: 6.28318548
ConeOuterGain: 0
- Entity: 16059016071823036758
TagComponent:
Tag: Cube
Expand Down Expand Up @@ -102,6 +107,24 @@ Entities:
Friction: 0.5
Restitution: 1
RestitutionThreshold: 0.5
AudioSourceComponent:
AudioHandle: 5698620207532946169
VolumeMultiplier: 1
PitchMultiplier: 1
PlayOnAwake: true
Looping: true
Spatialization: true
AttenuationModel: 1
RollOff: 1
MinGain: 0
MaxGain: 1
MinDistance: 0.300000012
MaxDistance: 1000
ConeInnerAngle: 6.28318548
ConeOuterAngle: 6.28318548
ConeOuterGain: 0
DopplerFactor: 1
UsePlaylist: false
- Entity: 12327645238897851592
TagComponent:
Tag: Welcome
Expand Down
3 changes: 2 additions & 1 deletion StarEditor/premake5.lua
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ project "StarEditor"
"%{IncludeDir.filewatch}",
"%{IncludeDir.glm}",
"%{IncludeDir.entt}",
"%{IncludeDir.ImGuizmo}"
"%{IncludeDir.ImGuizmo}",
"%{IncludeDir.miniaudio}"
}

links
Expand Down
1 change: 0 additions & 1 deletion StarEditor/src/Panels/ContentBrowserPanel.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#include "sepch.h"
#include "ContentBrowserPanel.h"

#include "StarEngine/Project/Project.h"
#include "StarEngine/Asset/TextureImporter.h"

Expand Down
Loading