Difference between revisions of "Main Page"

From Ciliz|W4
(37 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
Welcome to the W4 Engine wiki!
 +
 +
We are working on filling the wiki with documentation. The following articles are available for the time being:
 +
 
{{ContentGrid
 
{{ContentGrid
|content =
 
 
{{InfoCard
 
|heading = [[File:T Mode1 256.png|40px|link=]] <!--T:1--> Временная форма
 
 
|content =
 
|content =
Временная форма для быстрого добавления статей:
 
<inputbox>
 
type=create
 
width=100
 
break=yes
 
buttonlabel=Создать новую страницу
 
default=(Название статьи)
 
</inputbox>
 
}} 
 
  
 
{{InfoCard
 
{{InfoCard
|heading = [[File:T Mode1 256.png|40px|link=]] <!--T:1--> Что это тут у нас
+
|heading = General Concepts
 
|content =
 
|content =
[[W4 Creator Kit]] - удобное средство от компании [http://ciliz.com/ Ciliz] для создания интерактивных браузерных 3D приложений.
+
System architecture and main solutions:
}}
+
* [[W4 Engine architecture]]
 +
* [[W4 Coordinate system and Node structure]]
 +
* [[W4 Main Game Loop]] Needs a description
 +
}}
  
 
{{InfoCard
 
{{InfoCard
|heading = [[File:T Mode1 256.png|40px|link=]] <!--T:1--> TEMP
+
|heading = Parts
 
|content =
 
|content =
Временная страница для тестов -- [[SettingsStuffPage]]
+
Complex subsystems:
}}
+
* [[W4 Material System]]
 +
** [[W4 Material File Format]]
 +
** [[W4 Default Materials]]
 +
* [[W4 Collision System]]
 +
* [[W4 Component System]]
 +
* [[W4 Hardware Abstraction Layer]]
 +
* [[W4 Physics System]]
 +
* [[W4 Graphical User Interface]]
 +
}}
  
 
{{InfoCard
 
{{InfoCard
|heading = [[File:Logo W4 small.png|40px|link=]] <!--T:1--> Logo
+
|heading = Elements
|content =
+
|content = Special modules:
[[File:W4 big logo.png|300px|link=]]
+
* [[W4 Math]] Needs a description
}}
+
* [[W4 Logger]] Needs a description
 +
* [[W4 Resources]] Needs a description
 +
* [[W4 Event System]] Needs a description
 +
* [[W4 Filesystem]] Needs a description
 +
}}
  
 
{{InfoCard
 
{{InfoCard
|heading = [[File:Logo W4 small.png|40px|link=]] <!--T:1--> Название блока
+
|heading = Tools
 
|content =
 
|content =
Содержание блока
+
Tools for working with the W4 Engine:
* Пункт первый
+
* [[W4 Mesh Converter]]
* Пункт второй
+
}}
* <syntaxhighlight lang="python" inline>lambda x: x * 2</syntaxhighlight> is a [[w:Lambda (programming)|lambda expression]] in Python.
 
}}
 
  
 
{{InfoCard
 
{{InfoCard
|heading = [[File:Logo W4 small.png|40px|link=]] <!--T:1--> Пример кода
+
|heading = How-tos
 
|content =
 
|content =
<syntaxhighlight lang="python" line="line" highlight="1,5-7" style="border:3px dashed blue">
+
How to work with the W4 Engine in simple words:
def quick_sort(arr):
+
* [[W4 Physics for Dummies]]
    less = []
+
* [[W4 Material Creation]]
    pivot_list = []
+
* [[W4 GUI Creation]]
    more = []
+
* [[W4 FSM]] Needs a description
    if len(arr) <= 1:
+
}}
        return arr
 
    else:
 
        pass
 
</syntaxhighlight>
 
}}
 
 
 
 
}}
 
}}
  
 
__NOTOC__
 
__NOTOC__

Revision as of 13:13, 19 August 2020

Welcome to the W4 Engine wiki!

We are working on filling the wiki with documentation. The following articles are available for the time being:



General Concepts

System architecture and main solutions:

Elements

Special modules:

Tools

Tools for working with the W4 Engine:

How-tos

How to work with the W4 Engine in simple words: