Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-06-16RNABrecht Van Lommel
* Added icon to property and enum property items. The latter is responsible for the large number of files changed. * For RNA functions, added PROP_RNAPTR flag to ask for a PointerRNA as argument instead of a C pointer, instead of doing it implicitly with the AnyType type. * Material: properly wrap diffuse/specular param variables, and rename some things for consistency. * MaterialTextureSlot: added "enabled" property (ma->septex). * Image: make animated property editable. * Image Editor: make some things editable, notifiers, respect state. * Context: fix issue with screen not being set as ID.
2009-06-112.5 RNA:Thomas Dinges
* Tooltip updates by William Reynish. Thanks!
2009-06-07RNA:Brecht Van Lommel
* Accept None as NULL pointers through python function calls. * Added type callback for pointers back, it's useful still in some cases. Made Object.data editable using this, the pointer type varying based on object type. * Wrap pin ID pointer in buttons space. * Added subclasses for text and surface curve ID blocks, to organize data better and get proper icons. * Added RNA_type_to_ID_code and ID_code_to_RNA_type functions. * Update RNA_access.h with new RNA types.
2009-06-072.5 Preview render:Thomas Dinges
* Added missing redraw tags for lamp and texture. * Added Texture Notifiers.
2009-06-04UI:Brecht Van Lommel
* First step for buttons context browsing, read-only still. * Drawn in a panel now, though this should become a separate region. * Path of the context is constructed as an array of RNA pointers and then used for drawing and context lookups from python.
2009-06-04RNA:Brecht Van Lommel
* Added a MaterialSlot collection in Object rather than giving the list of materials immediately. This should more correctly reflect how this data is organized, even though there is no equivalent C struct. * Added name properties to MaterialSlot/TextureSlot/ParticleSystem.
2009-06-04UI/RNA:Brecht Van Lommel
* Added an icon entry to RNA structs, instead of the UI_GetIconRNA function, to keep code together a bit more and make the lookup faster.
2009-05-29RNA:Brecht Van Lommel
* Automatically do us++ and us-- reference counting in ID pointer set functions. * Added an enum property callback to dynamically vary the list of available items. * Added some functions to do removes on pointers and collections runtime defined for RNA and using ID properties. * Constraints now have owner/target space wrapped, and most pointers made editable. They can be ported to use python layouts. * Also other pointers made editable that I think are see now with the automatic reference counting.
2009-05-26* Small tweaks to texture panelsMatt Ebb
2009-05-222.5 Buttons:Thomas Dinges
* Added initial Texture Buttons by William Reynish. Thanks! Note: I did some code cleanup and fixes to the code. * Texture RNA fixes.
2009-04-122.5Ton Roosendaal
Patch provided by Thomas (DingTo). Fixes min/max limits in rna.
2009-04-102.5 / RNAElia Sarti
Corrected a description.
2009-04-102.5 / RNA Elia Sarti
DNA_texture_types almost finished, missing still plugin type. I noticed many texture share the same noise settings maybe this can be grouped into a common function. Also testing out first commit.
2009-03-25RNA: fix for texture patch compile on MSVC, mixing declarations and code.Brecht Van Lommel
2009-03-25RNA: texture types Clouds/Wood/Marble/Magic/Stucci wrapped,Brecht Van Lommel
patch by Sven von Brand, thanks!
2009-03-24Started wrapping nodes in RNA. Only shader nodes have all their options wrapped;Robin Allen
TEX and CMP to follow. Also, renumbered the texture nodes because when I first wrote them I thought they could share ID numbers with the SH and CMP nodes. D'oh!
2009-03-23RNA: added CloudsTexture as an example.Brecht Van Lommel
2009-03-23RNA: Code for Texture inheritance, some cleanups.Brecht Van Lommel
2009-02-02Animato RNA wrapping:Joshua Leung
It's about time that the RNA wrapping for various parts of the animation system were cleaned up for my recent changes. I've moved some code around (and/or deleted a file or two) in the process.
2009-01-27Added some code in sculpt and RNA for textures with type none. Hopefully ↵Nicholas Bishop
fixes the problem with sculpt not working in 2.5.
2009-01-11RNABrecht Van Lommel
* Finished DNA_lamp_types.h, DNA_world_types.h and DNA_sound_types.h. * Renamed "parent" struct property to "nested", and also remaining "from" usage to "base". * Added a NEVER_NULL subtype for pointers and use it for all properties that apply. * Make sure all structs have a description, and fix any other DOC_BROKEN descriptions, also many other naming consistency improvements.
2009-01-06Added RNA for color ramps, as well as color-ramp properties for material Nicholas Bishop
and color.
2009-01-04RNABrecht Van Lommel
* DNA_cloth_types.h, patch by Roelf de Kock. The gravity[3] member is not being parsed correct by makesdna.c and will give issues even when trying to fix it. Worked around it for now in RNA by wrapping it manually, but this should really be fixed in the DNA genetics code, added a comment about it in DNA_cloth_types.h. * Handle vertex groups and uv layers more consistent now. They are all exposed as strings now. Reason is that indices don't really say much, and a direct pointer is not always possible because for example a uv layer in a material can be used for multiple objects and so there is no single pointer. In python it is not too hard to use either since the strings works as a key for lookups. For the user interface we can later think of some method to generate popup menus in a way that works for vertex groups, uv layers, bones etc. * This also fixes the XXX's in rna_modifier.c, I think that can be marked done.
2009-01-04Added more RNA MTex propertiesNicholas Bishop
2009-01-03Added RNA for MTex, also property for mtex array in Material RNA.Nicholas Bishop
2009-01-03Started RNA for MTexNicholas Bishop
2009-01-03Renamed RNA EnvironmentalMap to EnvironmentMapNicholas Bishop
2009-01-03Added RNA for EnvMaps. Also some more properties for Textures.Nicholas Bishop
2009-01-03Added a bunch of RNA properties for textures.Nicholas Bishop
2009-01-03Made the basic RNA changes for Tex(ture), no properties wrapped yet.Nicholas Bishop