






[{"content":" 快速複製常用的文字樹狀圖模板與符號，\n用於筆記、結構、文件整理等。\n基本模板 # 主分類 ├── 子分類A │ ├── A1 │ └── A2 └── 子分類B └── B1 快速模板 # 三層結構\n主分類 ├── 分類1 │ ├── 項目1 │ └── 項目2 └── 分類2 ├── 項目3 └── 項目4 基本結構符號 # 整理常用「文字樹狀圖符號」，可自由組合、擴展自己的模板~\n符號 用途 ├ 中間節點（後面還有） └ 最後節點 │ 垂直延續 ─ 水平連接 節點符號（裝飾/層級） # ● ○ ◎ ◉ ■ □ ▢ ▣ ◆ ◇ ▸ ▹ ▶ 括號與框架（分類感） # [ ] ( ) { } \u0026lt; \u0026gt; ","date":"39 Oct 3030","externalUrl":null,"permalink":"/notes/practical/text-tree-diagram/","section":"筆記","summary":"\u003c!--\n\n\u003cfigure\u003e\n      \u003cimg class=\"my-0 rounded-md nozoom flex justify-center w-custom-330\" src=\"images/inner_cover_hugo_blowfish.jpg\" alt=\"Inner Cover Image\" /\u003e\n  \n  \n  \u003c/figure\u003e\n--\u003e\n\u003cp\u003e快速複製常用的文字樹狀圖模板與符號，\u003cbr\u003e\n用於筆記、結構、文件整理等。\u003cbr\u003e\u003c/p\u003e","title":"文字畫樹狀圖：常用符號與可複製模板","type":"notes"},{"content":"2026年曆測試\n","date":"59 Oct 5050","externalUrl":null,"permalink":"/resources/2026-calendar/","section":"Resources","summary":"\u003cp\u003e2026年曆測試\u003c/p\u003e","title":"2026 年曆","type":"resources"},{"content":"Hugo搭配Blowfish主題的語法，\n大致分成：\nHTML語法：寫模板、樣式，最通用\nMD語法：常用於index.md內頁，簡便\nBlowfish 簡碼：Blowfish主題整理的GO語法\n常用語法 # 標註\n# \u0026lt;!-- --\u0026gt; 換行\n# \u0026lt;br\u0026gt; 程式碼\n# 用👉`👈左右框住\n```go ```markdown ```html 插入圖片\n# 在 Hugo 中， Page Bundle 圖片的相對路徑要注意規則。\n資料夾裡必須要有一個 index.md (・ω・、)\n若只有 index.zh-tw.md Page Bundle會無法成立，圖片破光光 (つд`ﾟ)･ﾟ･\ncontent/文章資料夾/ ├─ index.md # 必須存在，可以是空白檔案 ├─ index.zh-tw.md └─ images/Export_UV_Layout.png 文章資料夾內同時要有\nindex.md index.zh-tw.md images 資料夾\nMD寫法是 ![圖片說明](圖片相對位置)\n![Export UV Layout](images/Export_UV_Layout.png) MD的寫法會強制滿版、圓角，\n若圖片寬度低於 602px，使用MD寫法將會導致圖片模糊\nfigure 寫法的 default=true 能解除強制滿版、圓角，以原尺寸、直角顯示圖片。\n不過 figure 寫法無法放入程式碼框，會強制啟動插入圖片，因此拆成\n{{ 與 \u0026lt; figure...\u0026gt; 與 }} 之間無空格\n{{之間的}}語法如下： \u0026lt; figure src=\u0026#34;images/Export_UV_Layout.png\u0026#34; alt=\u0026#34;Export UV Layout\u0026#34; \u0026gt; \u0026lt; figure src=\u0026#34;images/Export_UV_Layout.png\u0026#34; alt=\u0026#34;Export UV Layout\u0026#34; default=true \u0026gt; id內文跳轉\n# 手動指定目標 id：{#3d}\n跳轉連結寫法：[連結文字](#3d)\n有時候主題或瀏覽器對中文 id 會有問題，所以在標題手動指定 id：\n## 3D筆記 {#3d} ## 架站筆記 {#site} 固定 id 名稱後，再用：\n[3D](#3d)、[架站](#site) 連結\n# [顯示文字](https://sample/go/) 預設會另開視窗\nHTML語法 # 標註\n# \u0026lt;!-- --\u0026gt; 程式碼\n# 用👉`👈左右框住\n換行\n# \u0026lt;br\u0026gt; MD語法 # 官方文檔 # Blowfish Markdown 示例 | Github 範例文章\n連結\n# [顯示文字](https://sample/go/) 預設會另開視窗\nBlowfish 簡碼 # 官方文檔 # Hugo 簡碼 | Blowfish 簡碼\n頁面連結\n# [顯示文字]({{ }}) 同視窗內跳轉\n({{ }})內是\u0026lt; ref \u0026quot;/目標位置\u0026quot; \u0026gt; 強制觸發，用程式碼框也沒用！\n‼️找不到目標時，會整個網站出不出來！慎用‼️\n","date":"59 Oct 5050","externalUrl":null,"permalink":"/notes/dev/web/cheatsheet-hugo-blowfish/","section":"筆記","summary":"\u003cp\u003eHugo搭配Blowfish主題的語法，\u003cbr\u003e\n大致分成：\u003cbr\u003e\n\u003cstrong\u003eHTML語法\u003c/strong\u003e：寫模板、樣式，最通用\u003cbr\u003e\n\u003cstrong\u003eMD語法\u003c/strong\u003e：常用於\u003ccode\u003eindex.md\u003c/code\u003e內頁，簡便\u003cbr\u003e\n\u003cstrong\u003eBlowfish 簡碼\u003c/strong\u003e：Blowfish主題整理的GO語法\u003cbr\u003e\u003c/p\u003e","title":"常用語法：Hugo網站搭配Blowfish主題","type":"notes"},{"content":"3D、Blender相關筆記集中\n","date":"9090-50-99","externalUrl":null,"permalink":"/tc/notes/3d/","section":"筆記","summary":"\u003cp\u003e3D、Blender相關筆記集中\u003c/p\u003e\n\u003chr\u003e","title":"3D 筆記","type":"notes"},{"content":"","date":"9090-50-99","externalUrl":null,"permalink":"/tc/tags/auto-rig-pro/","section":"Tags","summary":"","title":"Auto-Rig Pro","type":"tags"},{"content":"","date":"9090-50-99","externalUrl":null,"permalink":"/tc/tags/blender/","section":"Tags","summary":"","title":"Blender","type":"tags"},{"content":"","date":"9090-50-99","externalUrl":null,"permalink":"/tc/tags/rigging/","section":"Tags","summary":"","title":"Rigging","type":"tags"},{"content":"","date":"9090-50-99","externalUrl":null,"permalink":"/tc/tags/%E7%B6%81%E5%AE%9A/","section":"Tags","summary":"","title":"綁定","type":"tags"},{"content":"Personal / Commercial\nPersonal # Commercial # Furin Sentai — Webtoon Project Webtoon Commercial ","date":"49 Oct 4040","externalUrl":null,"permalink":"/art/","section":"Gallery","summary":"\u003cp\u003e\u003ca href=\"#art\"\u003ePersonal\u003c/a\u003e / \u003ca href=\"#commercial\"\u003eCommercial\u003c/a\u003e\u003c/p\u003e\n\u003chr\u003e\n\n\n\u003ch2 class=\"relative group\"\u003ePersonal \n    \u003cdiv id=\"art\" class=\"anchor\"\u003e\u003c/div\u003e\n    \n    \u003cspan\n        class=\"absolute top-0 w-6 transition-opacity opacity-0 ltr:-left-6 rtl:-right-6 not-prose group-hover:opacity-100\"\u003e\n        \u003ca class=\"group-hover:text-primary-300 dark:group-hover:text-neutral-700\"\n            style=\"text-decoration-line: none !important;\" href=\"#art\" aria-label=\"Anchor\"\u003e#\u003c/a\u003e\n    \u003c/span\u003e        \n    \n\u003c/h2\u003e\n\n\n\u003cdiv id=\"gallery-3fc74bc0b0211a47cdb1153ca7b92b9d\" class=\"gallery\"\u003e\n  \n  \u003cimg src=\"/img/ThitaCreatorClips_Cover.jpg\" class=\"grid-w50 md:grid-w33 xl:grid-w25\" /\u003e\n  \u003cimg src=\"/img/profile_picture_md_thitaart.jpg\" class=\"grid-w50 md:grid-w33 xl:grid-w25\" /\u003e\n  \u003cimg src=\"/art/web-visuals-2026/images/hero_background_image_thta.jpg\" class=\"grid-w50 md:grid-w33 xl:grid-w25\" /\u003e\n  \n  \u003cimg src=\"/art/images/character-concept_emon_1011-23_thita.png\" class=\"grid-w50 md:grid-w33 xl:grid-w25\" /\u003e\n  \u003cimg src=\"/art/images/thita-avatar-character-concept_0302-26_thita.png\" class=\"grid-w50 md:grid-w33 xl:grid-w25\" /\u003e\n  \u003cimg src=\"/art/images/character-styleframe_0707-2024_thita.png\" class=\"grid-w50 md:grid-w33 xl:grid-w25\" /\u003e\n\n  \u003cimg src=\"/art/3d-scene/images/3d-colored-manga-scene-windmill.png\" class=\"grid-w50 md:grid-w33 xl:grid-w25\" /\u003e\n  \u003cimg src=\"/art/images/character-styleframe_0419-24_thita.png\" class=\"grid-w50 md:grid-w33 xl:grid-w25\" /\u003e\n\n\u003c/div\u003e\n\u003chr\u003e\n\n\n\u003ch2 class=\"relative group\"\u003eCommercial \n    \u003cdiv id=\"commercial\" class=\"anchor\"\u003e\u003c/div\u003e\n    \n    \u003cspan\n        class=\"absolute top-0 w-6 transition-opacity opacity-0 ltr:-left-6 rtl:-right-6 not-prose group-hover:opacity-100\"\u003e\n        \u003ca class=\"group-hover:text-primary-300 dark:group-hover:text-neutral-700\"\n            style=\"text-decoration-line: none !important;\" href=\"#commercial\" aria-label=\"Anchor\"\u003e#\u003c/a\u003e\n    \u003c/span\u003e        \n    \n\u003c/h2\u003e\n\n\n\n\n\n\n\n\u003csection class=\"w-full grid gap-4 sm:grid-cols-2 md:grid-cols-3\"\u003e\n    \n        \n\n  \u003ca href=\"/art/commercial/furin-sentai/\" class=\"min-w-full\"\u003e\n    \n    \u003cdiv class=\"min-h-full border border-neutral-200 dark:border-neutral-700 border-2 rounded overflow-hidden shadow-2xl relative\"\u003e\n        \n        \u003cdiv class=\"w-full thumbnail_card nozoom\" style=\"background-image:url(/art/commercial/furin-sentai/featured_hu_8920be238ab23dea.png);\"\u003e\u003c/div\u003e\n        \n      \n\n      \u003cdiv class=\"px-6 py-4\"\u003e\n\n        \n        \u003cdiv class=\"font-bold text-xl text-neutral-800 decoration-primary-500 hover:underline hover:underline-offset-2 dark:text-neutral\"\n          href=\"/art/commercial/furin-sentai/\"\u003eFurin Sentai — Webtoon Project\u003c/div\u003e\n        \n\n        \u003cdiv class=\"text-sm text-neutral-500 dark:text-neutral-400\"\u003e\n          \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n\n  \n  \n\u003c/div\u003e\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n\u003c/div\u003e\n\n\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \u003cspan style=\"margin-top:0.5rem\" class=\"mr-2\" onclick=\"window.open(\u0026#34;/tags/webtoon/\u0026#34;,'_self');return false;\"\u003e\n    \u003cspan class=\"flex\" style=\"cursor: pointer;\"\u003e\n  \u003cspan class=\"rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400\"\u003e\n    Webtoon\n  \u003c/span\u003e\n\u003c/span\u003e\n  \u003c/span\u003e\n  \n  \u003cspan style=\"margin-top:0.5rem\" class=\"mr-2\" onclick=\"window.open(\u0026#34;/tags/commercial/\u0026#34;,'_self');return false;\"\u003e\n    \u003cspan class=\"flex\" style=\"cursor: pointer;\"\u003e\n  \u003cspan class=\"rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400\"\u003e\n    Commercial\n  \u003c/span\u003e\n\u003c/span\u003e\n  \u003c/span\u003e\n  \n  \n  \n  \n\u003c/div\u003e\n\n\n\n\n        \u003c/div\u003e\n\n        \n      \u003c/div\u003e\n      \u003cdiv class=\"px-6 pt-4 pb-2\"\u003e\n\n      \u003c/div\u003e\n    \u003c/div\u003e\n  \u003c/a\u003e\n\n    \n\u003c/section\u003e","title":"Gallery","type":"art"},{"content":"","date":"49 Oct 4040","externalUrl":null,"permalink":"/tags/","section":"Tags","summary":"","title":"Tags","type":"tags"},{"content":"","date":"49 Oct 4040","externalUrl":null,"permalink":"/","section":"Thita’s Creator Clips","summary":"","title":"Thita’s Creator Clips","type":"page"},{"content":"","date":"49 Oct 4040","externalUrl":null,"permalink":"/tags/%E4%B8%BB%E8%A6%96%E8%A6%BA/","section":"Tags","summary":"","title":"主視覺","type":"tags"},{"content":"","date":"49 Oct 4040","externalUrl":null,"permalink":"/tags/%E4%BE%BF%E5%88%A9%E8%B2%BC%E5%B7%A5%E4%BD%9C%E5%AE%A4/","section":"Tags","summary":"","title":"便利貼工作室","type":"tags"},{"content":"主視覺 / 頭像\n主視覺 # 頭像 # 頭像背景 ","date":"49 Oct 4040","externalUrl":null,"permalink":"/art/web-visuals-2026/","section":"Gallery","summary":"\u003cp\u003e\u003ca href=\"#featured\"\u003e主視覺\u003c/a\u003e / \u003ca href=\"#hero\"\u003e頭像\u003c/a\u003e\u003c/p\u003e\n\n\n\u003ch3 class=\"relative group\"\u003e主視覺 \n    \u003cdiv id=\"featured\" class=\"anchor\"\u003e\u003c/div\u003e\n    \n    \u003cspan\n        class=\"absolute top-0 w-6 transition-opacity opacity-0 ltr:-left-6 rtl:-right-6 not-prose group-hover:opacity-100\"\u003e\n        \u003ca class=\"group-hover:text-primary-300 dark:group-hover:text-neutral-700\"\n            style=\"text-decoration-line: none !important;\" href=\"#featured\" aria-label=\"Anchor\"\u003e#\u003c/a\u003e\n    \u003c/span\u003e        \n    \n\u003c/h3\u003e\n\n\n  \u003cfigure\u003e\u003cimg src=\"/img/ThitaCreatorClips_Cover.jpg\"\n    alt=\"網站封面圖\"\u003e\n\u003c/figure\u003e\n\n\n\u003cbr\u003e\n\n\n\u003ch3 class=\"relative group\"\u003e頭像 \n    \u003cdiv id=\"hero\" class=\"anchor\"\u003e\u003c/div\u003e\n    \n    \u003cspan\n        class=\"absolute top-0 w-6 transition-opacity opacity-0 ltr:-left-6 rtl:-right-6 not-prose group-hover:opacity-100\"\u003e\n        \u003ca class=\"group-hover:text-primary-300 dark:group-hover:text-neutral-700\"\n            style=\"text-decoration-line: none !important;\" href=\"#hero\" aria-label=\"Anchor\"\u003e#\u003c/a\u003e\n    \u003c/span\u003e        \n    \n\u003c/h3\u003e\n\n\n  \u003cfigure\u003e\u003cimg src=\"/img/profile_picture_md_thitaart.jpg\"\n    alt=\"網站頭像\"\u003e\n\u003c/figure\u003e\n\n\n\u003cbr\u003e\n頭像背景\n\n\n  \u003cfigure\u003e\u003cimg src=\"/art/web-visuals-2026/images/hero_background_image_thta.jpg\"\n    alt=\"網站頭像\"\u003e\n\u003c/figure\u003e","title":"個人主視覺：便利貼工作室","type":"art"},{"content":"","date":"49 Oct 4040","externalUrl":null,"permalink":"/tags/%E5%89%B5%E4%BD%9C/","section":"Tags","summary":"","title":"創作","type":"tags"},{"content":"","date":"49 Oct 4040","externalUrl":null,"permalink":"/tags/%E6%8F%92%E7%95%AB/","section":"Tags","summary":"","title":"插畫","type":"tags"},{"content":"","date":"49 Oct 4040","externalUrl":null,"permalink":"/tags/%E7%BE%8E%E8%A1%93/","section":"Tags","summary":"","title":"美術","type":"tags"},{"content":"","date":"39 Oct 3030","externalUrl":null,"permalink":"/tags/practical/","section":"Tags","summary":"","title":"Practical","type":"tags"},{"content":"","date":"39 Oct 3030","externalUrl":null,"permalink":"/tags/template/","section":"Tags","summary":"","title":"Template","type":"tags"},{"content":"","date":"39 Oct 3030","externalUrl":null,"permalink":"/tags/tree-diagram/","section":"Tags","summary":"","title":"Tree Diagram","type":"tags"},{"content":"","date":"3030-50-39","externalUrl":null,"permalink":"/tc/tags/%E5%AF%A6%E7%94%A8/","section":"Tags","summary":"","title":"實用","type":"tags"},{"content":"","date":"3030-50-39","externalUrl":null,"permalink":"/tc/tags/%E6%A8%B9%E7%8B%80%E5%9C%96/","section":"Tags","summary":"","title":"樹狀圖","type":"tags"},{"content":"","date":"39 Oct 3030","externalUrl":null,"permalink":"/tags/%E7%AD%86%E8%A8%98/","section":"Tags","summary":"","title":"筆記","type":"tags"},{"content":" 筆記 本章節包含了你需要了解的有關 Blowfish 的所有信息。如果你是新用户，請查閲[安裝]指南，或者訪問[示例]來了解 Blowfish 能做什麼。\n","date":"39 Oct 3030","externalUrl":null,"permalink":"/notes/","section":"筆記","summary":"\u003cdiv class=\"lead text-neutral-500 dark:text-neutral-400 !mb-9 text-xl\"\u003e\n  筆記\n\u003c/div\u003e\n\n\u003cp\u003e本章節包含了你需要了解的有關 Blowfish 的所有信息。如果你是新用户，請查閲[安裝]指南，或者訪問[示例]來了解 Blowfish 能做什麼。\u003c/p\u003e","title":"筆記","type":"notes"},{"content":"","date":"3030-100-39","externalUrl":null,"permalink":"/tc/tags/git/","section":"Tags","summary":"","title":"Git","type":"tags"},{"content":"自架網站相關，以Hugo搭配Blowfish主題為主\n","date":"3030-100-39","externalUrl":null,"permalink":"/tc/notes/dev/web/","section":"筆記","summary":"\u003cp\u003e自架網站相關，以Hugo搭配Blowfish主題為主\u003c/p\u003e\n\u003chr\u003e","title":"架站筆記","type":"notes"},{"content":"","date":"3030-100-39","externalUrl":null,"permalink":"/tc/tags/%E9%83%A8%E7%BD%B2/","section":"Tags","summary":"","title":"部署","type":"tags"},{"content":" 前言 # 集中一些Blender操作時遇到的問題。\n雕刻筆刷、切刀離很遠 # 使用雕刻模式\u0026amp;編輯摸式的切刀(K)工具時\n筆刷無法抓到目標頂點 偏移想編修的點位 常見綁定姿勢：T-Pose 或 A-Pose 調整右側標籤 View\u0026raquo;Clip Start數值\n二、建立骨架 (Armature) # 在 Blender 新增 Armature → Single Bone 進入編輯模式，拉出主要骨骼：脊椎、四肢、頭部 使用命名與鏡像功能，快速生成對稱骨骼 三、權重綁定 (Weight Painting) # 將模型與骨架進行 自動權重綁定 (Automatic Weights) 檢查每個骨骼的影響範圍 使用 Weight Paint 工具手動修正不自然的變形 四、測試與調整 # 切換到 Pose Mode 測試基本動作 確認關節變形是否自然 必要時微調骨骼位置或權重分布 五、輸出與應用 # 骨架完成後，可用於角色動畫或遊戲引擎（Unity/Unreal） 匯出時建議使用 FBX 或 glTF，並確認匯出設定 結語 # 整體流程可歸納為：\n建模 → 建立骨架 → 權重綁定 → 測試 → 輸出\nRigging 需要耐心與反覆調整，熟悉流程後將能更有效率地完成角色動畫準備。\n","date":"25250-90-259","externalUrl":null,"permalink":"/tc/notes/3d/oh-no/","section":"筆記","summary":"\u003ch2 class=\"relative group\"\u003e前言 \n    \u003cdiv id=\"%E5%89%8D%E8%A8%80\" class=\"anchor\"\u003e\u003c/div\u003e\n    \n    \u003cspan\n        class=\"absolute top-0 w-6 transition-opacity opacity-0 ltr:-left-6 rtl:-right-6 not-prose group-hover:opacity-100\"\u003e\n        \u003ca class=\"group-hover:text-primary-300 dark:group-hover:text-neutral-700\"\n            style=\"text-decoration-line: none !important;\" href=\"#%E5%89%8D%E8%A8%80\" aria-label=\"定位點\"\u003e#\u003c/a\u003e\n    \u003c/span\u003e        \n    \n\u003c/h2\u003e\n\u003cp\u003e集中一些Blender操作時遇到的問題。\u003c/p\u003e","title":"Blender 操作問題","type":"notes"},{"content":"","date":"25250-90-259","externalUrl":null,"permalink":"/tc/tags/rig/","section":"Tags","summary":"","title":"Rig","type":"tags"},{"content":"","date":"25250-90-259","externalUrl":null,"permalink":"/tc/tags/%E6%93%8D%E4%BD%9C/","section":"Tags","summary":"","title":"操作","type":"tags"},{"content":"","date":"29 Oct 2020","externalUrl":null,"permalink":"/tags/25tt/","section":"Tags","summary":"","title":"25tt","type":"tags"},{"content":"","date":"29 Oct 2020","externalUrl":null,"permalink":"/tags/st/","section":"Tags","summary":"","title":"St","type":"tags"},{"content":"","date":"29 Oct 2020","externalUrl":null,"permalink":"/art/webtoon--see/stb03/","section":"Gallery","summary":"","title":"分鏡03","type":"art"},{"content":"","date":"309 Oct 30300","externalUrl":null,"permalink":"/art/webtoon--see/stb01-jpg/","section":"Gallery","summary":"","title":"分鏡01-jpg","type":"art"},{"content":"","date":"59 Oct 5050","externalUrl":null,"permalink":"/tags/blowfish/","section":"Tags","summary":"","title":"Blowfish","type":"tags"},{"content":"","date":"59 Oct 5050","externalUrl":null,"permalink":"/tags/hugo/","section":"Tags","summary":"","title":"Hugo","type":"tags"},{"content":"","date":"59 Oct 5050","externalUrl":null,"permalink":"/resources/","section":"Resources","summary":"","title":"Resources","type":"resources"},{"content":"","date":"59 Oct 5050","externalUrl":null,"permalink":"/tags/resources/","section":"Tags","summary":"","title":"Resources","type":"tags"},{"content":"","date":"59 Oct 5050","externalUrl":null,"permalink":"/tags/syntax/","section":"Tags","summary":"","title":"Syntax","type":"tags"},{"content":"","date":"59 Oct 5050","externalUrl":null,"permalink":"/tags/web/","section":"Tags","summary":"","title":"Web","type":"tags"},{"content":"","date":"5050-20-59","externalUrl":null,"permalink":"/tc/tags/%E5%9C%96%E7%89%87/","section":"Tags","summary":"","title":"圖片","type":"tags"},{"content":"","date":"59 Oct 5050","externalUrl":null,"permalink":"/tags/%E5%B9%B4%E6%9B%86/","section":"Tags","summary":"","title":"年曆","type":"tags"},{"content":"","date":"59 Oct 5050","externalUrl":null,"permalink":"/tags/%E7%B6%B2%E9%A0%81%E5%B7%A5%E5%85%B7/","section":"Tags","summary":"","title":"網頁工具","type":"tags"},{"content":"","date":"59 Oct 5050","externalUrl":null,"permalink":"/tags/%E8%AA%9E%E6%B3%95/","section":"Tags","summary":"","title":"語法","type":"tags"},{"content":"","date":"59 Oct 5050","externalUrl":null,"permalink":"/tags/%E8%B3%87%E6%BA%90/","section":"Tags","summary":"","title":"資源","type":"tags"},{"content":" About Thita Hi! I'm Thita\nA digital creator.\nI enjoy art, comics, 3D, and various technologies.\nI long for a life surrounded by creation and notes.\nI often combine 3D and digital painting to visualize my ideas.\nCurrently working as a freelancer with experience in comics and game art.\nPreviously worked on webtoon character art, game company 3D art, and manga assisting.\nFor art, I mainly use CSP and Blender, and do not use AI.\nAI is only used for translation, programming, and language learning.\nAfter my social media accounts mysteriously vanished\nand my hard drive failed,\nI became more aware of unexpected risks and built this website myself:\nThita’s Creator Clips, a cyber bookshelf summoned with tech magic, where I share notes, creations, tools, and resources. Follow Thita # ","date":"49 Oct 4040","externalUrl":null,"permalink":"/about/","section":"","summary":"\u003ch4 class=\"text-primary-600 dark:text-secondary-100\"\u003e\nAbout\u003c/h4\u003e\n\u003cdiv class=\"mt-0 text-2xl font-extrabold text-neutral-900 dark:text-neutral\"\u003e\n  Thita\n\u003c/div\u003e\n\u003cbr\u003e\nHi! I'm \u003cdiv class=\"font-extrabold text-primary-700 dark:text-neutral-200 inline\"\u003eThita\u003c/div\u003e\u003cbr\u003e\nA digital creator.\u003cbr\u003e\nI enjoy art, comics, 3D, and various technologies.\u003cbr\u003e\n\u003cbr\u003e\nI long for a life surrounded by creation and notes.\u003cbr\u003e\nI often combine 3D and digital painting to visualize my ideas.\u003cbr\u003e\n\u003cbr\u003e\nCurrently working as a freelancer with experience in comics and game art.\u003cbr\u003e\nPreviously worked on webtoon character art, game company 3D art, and manga assisting.\u003cbr\u003e\n\u003cbr\u003e\nFor art, I mainly use CSP and Blender, and do not use AI.\u003cbr\u003e\nAI is only used for translation, programming, and language learning.\u003cbr\u003e\n\u003cbr\u003e\nAfter my social media accounts mysteriously vanished\u003cbr\u003e\nand my hard drive failed,\u003cbr\u003e\nI became more aware of unexpected risks and built this website myself:\u003cbr\u003e\n\u003ca class=\"font-extrabold text-primary-700 dark:text-neutral-200 inline\" href=\"/en/\"\u003e\nThita’s Creator Clips\u003c/a\u003e,\na cyber bookshelf summoned with tech magic,\nwhere I share notes, creations, tools, and resources.\n\u003chr\u003e\n\n\n\u003ch2 class=\"relative group\"\u003eFollow Thita \n    \u003cdiv id=\"follow-thita\" class=\"anchor\"\u003e\u003c/div\u003e\n    \n    \u003cspan\n        class=\"absolute top-0 w-6 transition-opacity opacity-0 ltr:-left-6 rtl:-right-6 not-prose group-hover:opacity-100\"\u003e\n        \u003ca class=\"group-hover:text-primary-300 dark:group-hover:text-neutral-700\"\n            style=\"text-decoration-line: none !important;\" href=\"#follow-thita\" aria-label=\"Anchor\"\u003e#\u003c/a\u003e\n    \u003c/span\u003e        \n    \n\u003c/h2\u003e\n\u003cp\u003e\u003ca href=\"https://x.com/THITAart\" target=\"_blank\" class=\"inline-grid p-2 rounded-md\" \nstyle=\"font-size: 48px\"\u003e\n\n  \n    \u003cspan class=\"relative inline-block align-text-bottom icon\"\u003e\n      \u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"\u003e\u003cpath fill=\"currentColor\" d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"/\u003e\u003c/svg\u003e\n    \u003c/span\u003e\n  \n\n\u003c/a\u003e\n\u003ca href=\"https://www.instagram.com/thitaart\" target=\"_blank\" class=\"inline-grid p-2 rounded-md\" \nstyle=\"font-size: 48px\"\u003e\n\n  \n    \u003cspan class=\"relative inline-block align-text-bottom icon\"\u003e\n      \u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"\u003e\u003cpath fill=\"currentColor\" d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"/\u003e\u003c/svg\u003e\n  \n    \u003c/span\u003e\n  \n\n\u003c/a\u003e\n\u003ca href=\"https://www.facebook.com/THITAart\" target=\"_blank\" class=\"inline-grid p-2 rounded-md\" \nstyle=\"font-size: 48px\"\u003e\n\n   \n     \u003cspan class=\"relative inline-block align-text-bottom icon\"\u003e\n       \u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"\u003e\u003cpath fill=\"currentColor\" d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"/\u003e\u003c/svg\u003e\n   \n     \u003c/span\u003e\n   \n\n\u003c/a\u003e\n\u003ca href=\"https://www.youtube.com/@thitaart\" target=\"_blank\" class=\"inline-grid p-2 rounded-md\" \nstyle=\"font-size: 48px\"\u003e\n\n   \n     \u003cspan class=\"relative inline-block align-text-bottom icon\"\u003e\n       \u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"\u003e\u003cpath fill=\"currentColor\" d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"/\u003e\u003c/svg\u003e\n   \n     \u003c/span\u003e\n   \n\n\u003c/a\u003e\n\u003ca href=\"https://github.com/thitaart\" target=\"_blank\" class=\"inline-grid p-2 rounded-md\" \nstyle=\"font-size: 48px\"\u003e\n\n   \n     \u003cspan class=\"relative inline-block align-text-bottom icon\"\u003e\n       \u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"\u003e\u003cpath fill=\"currentColor\" d=\"M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z\"/\u003e\u003c/svg\u003e\n   \n     \u003c/span\u003e\n   \n\n\u003c/a\u003e\u003c/p\u003e","title":"","type":"about"},{"content":"","date":"49 Oct 4040","externalUrl":null,"permalink":"/tags/%E5%85%B3%E4%BA%8E/","section":"Tags","summary":"","title":"关于","type":"tags"},{"content":"","date":"4040-20-49","externalUrl":null,"permalink":"/tc/tags/%E9%97%9C%E6%96%BC/","section":"Tags","summary":"","title":"關於","type":"tags"},{"content":"","date":"299 Oct 29290","externalUrl":null,"permalink":"/tags/commercial/","section":"Tags","summary":"","title":"Commercial","type":"tags"},{"content":" Commercial Works # ","date":"299 Oct 29290","externalUrl":null,"permalink":"/art/commercial/","section":"Gallery","summary":"\u003ch2 class=\"relative group\"\u003eCommercial Works \n    \u003cdiv id=\"commercial\" class=\"anchor\"\u003e\u003c/div\u003e\n    \n    \u003cspan\n        class=\"absolute top-0 w-6 transition-opacity opacity-0 ltr:-left-6 rtl:-right-6 not-prose group-hover:opacity-100\"\u003e\n        \u003ca class=\"group-hover:text-primary-300 dark:group-hover:text-neutral-700\"\n            style=\"text-decoration-line: none !important;\" href=\"#commercial\" aria-label=\"Anchor\"\u003e#\u003c/a\u003e\n    \u003c/span\u003e        \n    \n\u003c/h2\u003e\n\n\n\n\n\n\n\n\u003csection class=\"w-full grid gap-4 sm:grid-cols-2 md:grid-cols-3\"\u003e\n    \n\u003c/section\u003e","title":"Commercial Works","type":"art"},{"content":" ■ Overview # A vertical-scroll webtoon produced and planned by Nippon Television.\nSet in a world threatened by mysterious enemies, the story follows members of a special task force fighting to protect society.\nBehind the heroic front, however, the organization is filled with affairs, betrayal, and complex relationships,\nblending action with dramatic, scandal-driven storytelling. ■ Credits # Original Concept: M.Marie Production \u0026amp; Copyright: Nippon Television Artwork: THITA / ontembaar Production: NTV / ontembaar / Plus81\n©NTV\n【LINEマンガ】\nhttps://app-manga.line.me/app/periodic/S143030 ■ Release # Release Date: June 29, 2024 Platform: LINEマンガ ■ Contribution # Character design Character expression Early stage Webtoon scene ","date":"299 Oct 29290","externalUrl":null,"permalink":"/art/commercial/furin-sentai/","section":"Gallery","summary":"日本テレビ企画のタテヨミ漫画『不倫戦隊』における制作参加事例。キャラクターデザインや人物作画、初期背景制作を担当。","title":"Furin Sentai — Webtoon Project","type":"art"},{"content":"","date":"299 Oct 29290","externalUrl":null,"permalink":"/tags/webtoon/","section":"Tags","summary":"","title":"Webtoon","type":"tags"},{"content":"","date":"29290-60-299","externalUrl":null,"permalink":"/ja/tags/%E3%82%AF%E3%83%A9%E3%82%A4%E3%82%A2%E3%83%B3%E3%83%88%E3%83%AF%E3%83%BC%E3%82%AF/","section":"Tags","summary":"","title":"クライアントワーク","type":"tags"},{"content":"","date":"29290-60-299","externalUrl":null,"permalink":"/ja/tags/%E3%82%BF%E3%83%86%E3%83%A8%E3%83%9F/","section":"Tags","summary":"","title":"タテヨミ","type":"tags"},{"content":"","date":"29290-60-299","externalUrl":null,"permalink":"/sc/tags/%E5%95%86%E4%B8%9A/","section":"Tags","summary":"","title":"商业","type":"tags"},{"content":"","date":"29290-60-299","externalUrl":null,"permalink":"/sc/tags/%E6%9D%A1%E6%BC%AB/","section":"Tags","summary":"","title":"条漫","type":"tags"},{"content":"","date":"29290-60-299","externalUrl":null,"permalink":"/tc/tags/%E6%A2%9D%E6%BC%AB/","section":"Tags","summary":"","title":"條漫","type":"tags"},{"content":"","date":"12120-20-129","externalUrl":null,"permalink":"/sc/tags/3d%E5%88%B6%E4%BD%9C/","section":"Tags","summary":"","title":"3D制作","type":"tags"},{"content":"","date":"129 Oct 12120","externalUrl":null,"permalink":"/tags/3d%E5%A0%B4%E6%99%AF/","section":"Tags","summary":"","title":"3D場景","type":"tags"},{"content":"","date":"12120-20-129","externalUrl":null,"permalink":"/tc/tags/3d%E8%A3%BD%E4%BD%9C/","section":"Tags","summary":"","title":"3D製作","type":"tags"},{"content":"","date":"129 Oct 12120","externalUrl":null,"permalink":"/tags/%E5%95%86%E6%A5%AD/","section":"Tags","summary":"","title":"商業","type":"tags"},{"content":"","date":"129 Oct 12120","externalUrl":null,"permalink":"/art/commercial/gun-cake-or-me-3d-scene/","section":"Gallery","summary":"","title":"漫畫3D素材《黑道甜點店》","type":"art"},{"content":"","date":"31310-80-319","externalUrl":null,"permalink":"/tc/tags/art/","section":"Tags","summary":"","title":"Art","type":"tags"},{"content":"","date":"319 Oct 31310","externalUrl":null,"permalink":"/tags/3d/","section":"Tags","summary":"","title":"3D","type":"tags"},{"content":" ▼ Download the 3D asset ▼ https://assets.clip-studio.com/zh-tw/detail?id=1863114\n","date":"319 Oct 31310","externalUrl":null,"permalink":"/resources/thita-3d-body-female_2021/","section":"Resources","summary":"3D Asset Free! Body","title":"3D Asset Body Free!","type":"resources"},{"content":"","date":"319 Oct 31310","externalUrl":null,"permalink":"/tags/assets/","section":"Tags","summary":"","title":"Assets","type":"tags"},{"content":"","date":"319 Oct 31310","externalUrl":null,"permalink":"/tags/csp/","section":"Tags","summary":"","title":"CSP","type":"tags"},{"content":"","date":"31310-80-319","externalUrl":null,"permalink":"/tc/tags/%E7%B4%A0%E6%9D%90/","section":"Tags","summary":"","title":"素材","type":"tags"},{"content":"","externalUrl":null,"permalink":"/art/3d-scene/","section":"Gallery","summary":"","title":"","type":"art"},{"content":"","externalUrl":null,"permalink":"/art/lab-art/webtoon-lab-00/","section":"Gallery","summary":"","title":"","type":"art"},{"content":"","externalUrl":null,"permalink":"/notes/3d/blender-auto-rig-pro/","section":"筆記","summary":"","title":"","type":"notes"},{"content":"","externalUrl":null,"permalink":"/notes/3d/blender-memo/","section":"筆記","summary":"","title":"","type":"notes"},{"content":"","externalUrl":null,"permalink":"/notes/3d/rigging-overview/","section":"筆記","summary":"","title":"","type":"notes"},{"content":"","externalUrl":null,"permalink":"/notes/dev/web/copy-project-folder/","section":"筆記","summary":"","title":"","type":"notes"},{"content":"","externalUrl":null,"permalink":"/notes/dev/web/images-in-content/","section":"筆記","summary":"","title":"","type":"notes"},{"content":"","externalUrl":null,"permalink":"/authors/","section":"Authors","summary":"","title":"Authors","type":"authors"},{"content":"","externalUrl":null,"permalink":"/categories/","section":"Categories","summary":"","title":"Categories","type":"categories"},{"content":"","externalUrl":null,"permalink":"/tc/tags/lab/","section":"Tags","summary":"","title":"Lab","type":"tags"},{"content":"測試區\n","externalUrl":null,"permalink":"/art/lab-art/","section":"Gallery","summary":"\u003cp\u003e測試區\u003c/p\u003e\n\u003chr\u003e","title":"Lab","type":"art"},{"content":"","externalUrl":null,"permalink":"/home/","section":"My Homepage","summary":"\u003c!--\n# Welcome!\n\nThis is the English version of my homepage.\n--\u003e","title":"My Homepage","type":"home"},{"content":"","externalUrl":null,"permalink":"/series/","section":"Series","summary":"","title":"Series","type":"series"}]