top of page

私たちの
プロジェクト

序章:

学生たちはもはや、私たちが慣れ親しんでいるのと同じ方法で建築をモデリングしたり設計したりすることはありません。これは当然のことです。なぜなら、彼らは以前と同じツールを使用していないからです。彼らのデザインの背後にあるコンセプトは何ですか?方法論は何ですか?今の値は?学生の作品はこれほど奇妙で読みにくいものではありませんでした。それでも、構築されたものは機能し、学生が自分の作品を説明する方法は、かつてないほど退屈で単調になりました. 

 

すべてが単調に見えます。すべてがあらかじめ決まっているようです。すべてがカノンです。それに反対すればするほど、従わざるを得なくなります。最善の方法は、アルゴリズムを採用し、私たちが楽しんでいる美学を見つけ、Sianne Ngai によって前景化された美的カテゴリーをマークすることです。これは、かわいい、おどけた、興味深いものに限定されません。さまざまな美学を組み合わせ始めると、より疎外された美学が生まれます。これらの美学は高度にパーソナライズされており、それらを楽しむことは通常、個人の育成に関連しています。疎外された美学は、最終的には私たちの世代の状態を表しています。美学は現在、文化をますます小さなサブカルチャーに細分化するためのマーケティングツールとして使用されており、受け入れられた集合的な好みに戻る明確な道はありません.

Capture.PNG

Installation

Install AI Render add-on (version 0.6.9).

  • Get AI Render on Blender Market or Gumroad,

    • (You can also download it for free on the releases page)

  • Open Blender, edit> Preferences > Add-ons > Install, and then find the zip file Set up according to AI Render add-on documentation.

 

Note: This add-on may have a GUI freezing issue when rendering. Check the Edit AI Render add-on section in this file to fix this.

Install AI Helper add-on.

  • Download AI Helper add-on.

  • Open Blender, then go to Edit > Preferences > Add-ons > Install and then find the AI Helper add-on zip file.

  • Go to Properties panel > Render Properties > Auto-AI Render and Enable Auto-AI Render.

  • Enable 'Switch workspace to AI Render', If you want to switch the workspace to the AI render workspace after each render.

  • Click 'Open Render Result' to open the Render Result popup window.

  • Set the time interval.

  • Enable 'Auto disable Auto-AI Render (in hours)' and set the time if you want to disable the add-on automatically after the specified time (in hours).

  • Enable 'Enable Auto-AI Render'

AI

Edit AI Render add-on (version 0.6.9).

The AI Render (version 0.6.9) add-on may have a GUI freezing issue when rendering. We need to make some changes to the AI render add-on script to fix this.

Note: This may be fixed in later updates of the AI Render.

  • unzip AI Render add-on zip file.

  • Open the extracted zip folder.

  • Open task_queue.py in any text editor.

  • Make the following changes:

def execute_queued_functions():

        while not execution_queue.empty():

                  function = execution_queue.get()

                  function()

          return 0.2​​​​

change to:

import threading

def execute_queued_functions():

        while not execution_queue.empty():

                function = execution_queue.get()

                # function()

                thread = threading.Thread(target=function)

                thread.start()

          return 0.2

サンプル プロジェクト:

bottom of page