Skip to content

Commit

Permalink
Merge pull request #523 from mchorse/master
Browse files Browse the repository at this point in the history
BBS model exporter: Fixed cube faces not exporting in one texture formats
  • Loading branch information
JannisX11 authored May 8, 2024
2 parents ac0d916 + 110f999 commit 93a747e
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 deletions.
8 changes: 5 additions & 3 deletions plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -749,12 +749,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.

0 comments on commit 93a747e

Please sign in to comment.