Skip to content

Commit 11a3878

Browse files
committed
v1
0 parents  commit 11a3878

4 files changed

Lines changed: 819 additions & 0 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.rbz
2+
3+
main-thinking.rb
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
require 'extensions.rb'
2+
3+
extension = SketchupExtension.new("Horizon Material Prep", "src/main.rb")
4+
extension.description = "Prepares materials and textures for Horizon Desktop Editor export"
5+
extension.version = "1.0.0"
6+
extension.creator = "Horizon Helper"
7+
8+
Sketchup.register_extension(extension, true)
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "SketchUp Selection Exporter to Horizon Worlds",
3+
"version": "1.0.0",
4+
"description": "Complete workflow for Horizon Desktop Editor: processes materials, creates _BR/_MEO textures, and exports selected objects as FBX with proper Horizon naming conventions.",
5+
"creator": "Christopher Lally",
6+
"copyright": "Copyright 2025",
7+
"min_sketchup_version": "2019",
8+
"main": "horizon_material_prep.rb",
9+
"extension_type": "export_utility"
10+
}

0 commit comments

Comments
 (0)