Robossembler Framework: update readme files
This commit is contained in:
parent
b3612d8655
commit
679a52a041
41 changed files with 246 additions and 776 deletions
|
@ -1,9 +1,20 @@
|
|||
## Модули экспорта для Blender
|
||||
## cg.blender.export
|
||||
|
||||
Пакетный выпуск всех объектов сцены в требуемый 3д формат
|
||||
Модули экспорта для Blender
|
||||
|
||||
Совместим как с прикладной версией блендера, так и с модульной (скомпилированой в качестве модуля).
|
||||
Все модули экспорта работают через декоратор `export_decorator`.
|
||||
Его задача, чтоб экспорт был пообъектным, каждый объект в своем отдельном файле с именем объекта.
|
||||
|
||||
Подходит для запуска как в качестве модуля, так и внутри blender сцены.
|
||||
### fbx.py
|
||||
|
||||
Для запуска требуется указать путь назначения 3д файлов. Модули выпустять все объекты по отдельности с именами файлов по имени объекта.
|
||||
Экспорт midpoly с оптимизированными параметрами для high end движков.
|
||||
|
||||
### dae.py
|
||||
|
||||
Экспорт lowpoly с оптимизированными параметрами для opengl-2 движков.
|
||||
|
||||
### stl.py
|
||||
|
||||
Экспорт lowpoly с оптимизированными параметрами для объекта коллизии.
|
||||
|
||||
### Остальные модули - DEPRECATED
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Copyright (C) 2023 Ilia Kurochkin <brothermechanic@gmail.com>
|
||||
# coding: utf-8
|
||||
# Copyright (C) 2023 Ilia Kurochkin <brothermechanic@yandex.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Copyright (C) 2023 Ilia Kurochkin <brothermechanic@gmail.com>
|
||||
# coding: utf-8
|
||||
# Copyright (C) 2023 Ilia Kurochkin <brothermechanic@yandex.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
|
@ -13,8 +13,6 @@
|
|||
'''
|
||||
DESCRIPTION.
|
||||
Collada mesh exporter.
|
||||
Exports all objects in scene.
|
||||
You can set export path and subdir.
|
||||
'''
|
||||
__version__ = "0.2"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Copyright (C) 2023 Ilia Kurochkin <brothermechanic@gmail.com>
|
||||
# coding: utf-8
|
||||
# Copyright (C) 2023 Ilia Kurochkin <brothermechanic@yandex.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
|
@ -12,9 +12,7 @@
|
|||
# GNU General Public License for more details.
|
||||
'''
|
||||
DESCRIPTION.
|
||||
Collada mesh exporter.
|
||||
Exports all objects in scene.
|
||||
You can set export path and subdir.
|
||||
FBX mesh exporter.
|
||||
'''
|
||||
__version__ = "0.1"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Copyright (C) 2023 Ilia Kurochkin <brothermechanic@gmail.com>
|
||||
# coding: utf-8
|
||||
# Copyright (C) 2023 Ilia Kurochkin <brothermechanic@yandex.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
|
@ -13,8 +13,6 @@
|
|||
'''
|
||||
DESCRIPTION.
|
||||
STL mesh exporter.
|
||||
Exports all objects in scene.
|
||||
You can set export path and subdir.
|
||||
'''
|
||||
__version__ = "0.2"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue