Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BBS model exporter: Fixed cube faces not exporting in one texture formats #523

Merged
merged 3 commits into from
May 8, 2024
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
8 changes: 5 additions & 3 deletions plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -758,12 +758,14 @@
},
"bbs_exporter": {
"title": "BBS Model Ex/importer",
"icon": "fa-file-export",
"icon": "icon.png",
"author": "McHorse",
"description": "Adds actions to export/import models in BBS format, which is used by BBS machinima studio.",
"version": "1.2.1",
"version": "1.2.2",
"variant": "both",
"tags": ["Exporter"]
"tags": ["Exporter", "Importer"],
"min_version": "4.8.0",
"has_changelog": true
},
"highlight_generator": {
"title": "Highlight Mod Shape Generator",
Expand Down
1 change: 1 addition & 0 deletions plugins/bbs_exporter/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**BBS Model Ex/importer** is a plugin to export models in BBS model format, which can be imported by BBS Studio dedicated application, and BBS mod.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
{
var face = c.faces[key];

if (face && face.texture)
if (face && face.texture !== null)
{
var uv = face.uv.slice();

Expand Down Expand Up @@ -585,8 +585,10 @@
author: "McHorse",
description: "Adds actions to export/import models in BBS format, which is used by BBS machinima studio.",
icon: "fa-file-export",
version: "1.2.1",
version: "1.2.2",
min_version: "4.8.0",
variant: "both",
has_changelog: true,
onload() {
exportAction = new Action("bbs_exporter", {
name: "Export BBS model",
Expand Down
15 changes: 15 additions & 0 deletions plugins/bbs_exporter/changelog.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"1.2.2": {
"title": "1.2.2",
"date": "2024-05-02",
"author": "McHorse",
"categories": [
{
"title": "Bug fixes",
"list": [
"Fixed cube faces not exporting in one texture formats"
]
}
]
}
}
Binary file added plugins/bbs_exporter/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading