Mod開発補助ツールの追加

gh-pages
Rui 2018-08-18 14:52:29 +09:00
parent eb1bed74dd
commit a3ce79a43a
14 changed files with 50 additions and 38 deletions

View File

@ -21,7 +21,7 @@ wiki:
images_dir: "images"
# テーマカラー
# モバイル版Chromeのタブ色に使用される
theme_color: "#f2f2f2"
theme_color: "#fff"
# デスクトップ判定
media-desktop: "all and (min-width: 768px)"

View File

@ -1,12 +1,15 @@
name: "NodeBoxEditor"
author: "rubenwardy"
screenshot: "/tools-mod-development/nodeboxeditor.png"
description: "NodeBox作成ツール。"
platform: "Windows / Linux"
name: "NodeBoxEditor"
author: "rubenwardy"
screenshot: "/tools-mod-development/nodeboxeditor.png"
description: "NodeBox作成するツールです。作ったNodeBoxはLuaやその他のモデル形式で保存することができます。<br>Windows以外はソースからビルドする必要があります。ビルド手順は<a href=\"https://github.com/rubenwardy/NodeBoxEditor/blob/master/docs/developers.md#building-and-installation\">こちら</a>を参照してください。"
platform: "Windows / Linux"
links:
-
text: "フォーラム"
url: "https://forum.minetest.net/viewtopic.php?t=2840"
url: "https://forum.minetest.net/viewtopic.php?t=2840"
-
text: "ダウンロード"
url: "https://github.com/rubenwardy/NodeBoxEditor/releases"
text: "ダウンロード(Windows)"
url: "https://github.com/rubenwardy/NodeBoxEditor/releases/download/v0.9.0/NodeBoxEditor_0_9_0_WindowsBuild.zip"
-
text: "ダウンロード(ソースコード)"
url: "https://github.com/rubenwardy/NodeBoxEditor/releases"

View File

@ -0,0 +1,12 @@
name: "Simplistic Web Node Box Creator"
author: "IcyDiamond"
screenshot: "/tools-mod-development/nodeboxeditor_web.png"
description: "ウェブブラウザ上でNodeBoxを作成するツールです。作ったNodeBoxはLuaとしてエクスポートできます。"
platform: "Windows / Linux"
links:
-
text: "https://lunasqu.ee/apps/3d/nodebox"
url: "https://lunasqu.ee/apps/3d/nodebox"
-
text: "フォーラム"
url: "https://forum.minetest.net/viewtopic.php?t=19895"

View File

@ -0,0 +1,11 @@
name: "SAM-Viewer"
author: "stu"
screenshot: "/tools-mod-development/sam_viewer.png"
description: "Irrlichtで作られた3Dモデルビューワです。アニメーションの再生や他モデルのアタッチなどの機能があります。<br>手動でビルドする必要があります。ビルド手順は<a href=\"https://github.com/stujones11/SAM-Viewer#installation\">こちら</a>を参照してください。"
links:
-
text: "フォーラム"
url: "https://forum.minetest.net/viewtopic.php?t=20171"
-
text: "ソースコード"
url: "https://github.com/stujones11/SAM-Viewer"

View File

@ -1,10 +1,10 @@
name: "Simple Mod Maker"
author: "rubenwardy"
description: "簡単なModを作成するツール。ブラウザ上で動作する。"
name: "Simple Mod Maker"
author: "rubenwardy"
description: "ウェブブラウザ上でModを作成できるツールです。ード(ブロック)とレシピを追加するModが作成できます。<br>実装結果はLuaソースコードとして出力されます。"
links:
-
text: "フォーラム"
url: "https://forum.minetest.net/viewtopic.php?t=9939"
text: "https://rubenwardy.com/minetest_mod_maker"
url: "https://rubenwardy.com/minetest_mod_maker"
-
text: "開く"
url: "http://rubenwardy.com/minetest_mod_maker"
text: "フォーラム"
url: "https://forum.minetest.net/viewtopic.php?t=9939"

View File

@ -1,15 +0,0 @@
name: "Tide"
author: "ashenk69"
screenshot: "/tools-mod-development/tide.png"
description: "Modのコードを編集するツール。"
platform: "Windows"
links:
-
text: "フォーラム"
url: "https://forum.minetest.net/viewtopic.php?t=10214"
-
text: "ダウンロード (32bit)"
url: "https://drive.google.com/file/d/0Bx9DccMfSPY-cE9LNU83bVBhR1k/view?pli=1"
-
text: "ダウンロード (64bit)"
url: "https://drive.google.com/file/d/0Bx9DccMfSPY-c2tJWXJTal9kZkE/view?usp=sharing&pli=1"

View File

@ -6,7 +6,7 @@
値: <dd>に表示される説明
{% endcomment %}
{% assign IMAGE_DIR = site.github.url | append: "/images" %}
{% capture IMAGE_DIR %}{{ site.github.url }}/{{ site.wiki.images_dir }}{% endcapture %}
{% assign IMAGE_ALT = "スクリーンショット" %}
<p>

View File

@ -14,7 +14,7 @@
$border-default: 1px solid #ccc;
//
$background: url({{ site.github.url }}/images/background.png);
$background: url({{ site.github.url }}/{{ site.wiki.images_dir }}/background.png);
$font-color: #333;
$font-family: "Hiragino Kaku Gothic ProN", "Helvetica Neue", "meiryo", "arial", "sans-serif";
$font-size: 18px;
@ -31,7 +31,7 @@ $container-padding-top-mobile: 1em;
$container-max-width: 1280px;
//
$header-background: #f2f2f2;
$header-background: #fff;
$header-height: 3em;
$header-link-color: #694;
$header-mobile-box-shadow: 0 0 5px 2px rgba(0,0,0,0.3);

View File

@ -11,7 +11,7 @@ layout: compress
{% assign style = style_scss | scssify %}
{% comment %}アイコンのURL{% endcomment %}
{% assign icon_url = site.github.url | append: "/images/icon.png" %}
{% capture icon_url %}{{ site.github.url }}/{{ site.wiki.images_dir }}/icon.png{% endcapture %}
{% capture amp-boilerplate %}
body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}
@ -47,13 +47,13 @@ body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:non
<header class="container_header header">
<a class="header-title" href="{{ site.github.url }}">
<amp-img class="header-icon" height="2em" width="2em"
alt="" src="{{ site.github.url }}/images/icon.svg">
alt="" src="{{ site.github.url }}/{{ site.wiki.images_dir }}/icon.svg">
</amp-img>
{{ site.title }}
</a>
<a class="header-menu" href="#footer-menu">
<amp-img class="header-icon" height="2em" width="2em"
alt="メニュー" src="{{ site.github.url }}/images/menu.svg">
alt="メニュー" src="{{ site.github.url }}/{{ site.wiki.images_dir }}/menu.svg">
</amp-img>
</a>
</header>
@ -63,7 +63,7 @@ body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:non
{{ page.title }}
<a title="GitHubで編集" href="{{ site.github.repository_url }}/edit/gh-pages/{{ page.path }}">
<amp-img class="edit" height="0.75em" width="0.75em" media="{{ site.media-desktop }}"
alt="編集" src="{{ site.github.url }}/images/edit.svg">
alt="編集" src="{{ site.github.url }}/{{ site.wiki.images_dir }}/edit.svg">
</amp-img>
</a>
</h1>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

View File

@ -1,5 +1,6 @@
---
title: ツール - Mod開発補助
date: 2018-8-18
---
- toc