Commit Graph

39108 Commits

Author SHA1 Message Date
Mitchell Stokes 418451fa03 KX_RadarSensor.getConeHeight() not longer exists, removing it from the docs. 2012-06-14 08:02:45 +00:00
Mitchell Stokes c07c572373 Fix for [#31813] "bge.types.KX_RadarSensor incorrect attributes" reported by Monster.
KX_RadarSensor.angle was returning the angle that was used to construct Bullet's physics shape, which is calculated from the logic brick gui. KX_RadarSensor.angle now recalculates the original value from the gui. However, m_coneradius isn't actually used by KX_RadarSensor that I can see, so it might be better to just assign the original angle to m_coneradius instead of the calculated value. I've also made KX_RadarSensor.angle read-only, since setting m_coneradius does not appear to have any affect, which means writing to KX_RadarSensor.angle never worked properly.
2012-06-14 08:01:20 +00:00
Dan Eicher cae6873bc6 Sequencer Drag & Drop -- disallow dropping on sequences for the current drop_poll functions 2012-06-14 04:57:42 +00:00
Jeroen Bakker fac417a3ba Fixed glares 2012-06-14 03:11:36 +00:00
Jeroen Bakker cc82653b72 Matched FogGlow with old implementation 2012-06-14 01:32:45 +00:00
Campbell Barton bde7e6c96b stule cleanup: node headers 2012-06-13 23:31:47 +00:00
Dan Eicher 906b9e0584 [#26630] Several problems with API constraint_orientation
Added a check to TRANSFORM_OT_create_orientation so it throws an exception instead of crashing blender (due to invalid view3d)

Can still create an orientation from the console just can't set it to active with the 'use' parameter
2012-06-13 23:04:32 +00:00
Campbell Barton fd212cd4bc image sample line now updates with the compositor changes (mango request) 2012-06-13 22:38:31 +00:00
Peter Larabell 94a0355795 simple assignments added to pre-processor temporary section of function to avoid unused argument compiler warnings. 2012-06-13 21:37:39 +00:00
Peter Larabell ceffc2cd50 add Anti-Aliasing (very rough draft algorithm, NOT FINAL version) to raskter lib. Code is still quite messy but will be replaced when final algo comes in anyway. 2012-06-13 19:57:23 +00:00
Campbell Barton 96099688c6 fix [#31819] New Compositor Ommits 'Composite' layer
the bug was introduced by accident in r47826, finishing a render node acted as if escape was pressed.

also changed order of signaling and releasing the buffer to match the old compositor.
2012-06-13 19:43:09 +00:00
Gaia Clary b006ed7d65 fix: [#31684] Collada, add file extension automatically does not work 2012-06-13 19:10:52 +00:00
Campbell Barton 6dcacd62a5 style cleanup 2012-06-13 19:07:09 +00:00
Brecht Van Lommel 4940482e59 Fix issue with missing emission in non-progressive integrator. 2012-06-13 17:34:47 +00:00
Campbell Barton 9e6869ea8a style cleanup 2012-06-13 17:27:49 +00:00
Campbell Barton 5049331755 style cleanup 2012-06-13 17:23:44 +00:00
Thomas Dinges 7818b94016 Cycles:
* "preview_aa_samples" minimum should be 0, not 1.
2012-06-13 16:15:42 +00:00
Campbell Barton 0a2da1ee45 patch [#31574] Screw seams to not work
from Benoit Donat-Bouillud (ladeheria)

from tracker -
  When using a screw axis (reference edge for screw), the operation always give the same result (as if the orientation of the reference edge was not take into account).
2012-06-13 16:06:13 +00:00
Brecht Van Lommel 01b036f5c6 Fix #31754: strand width fade value 2.0 gives wrong result, should fade out
strand entirely. Fix based on patch by Philipp Oeser.
2012-06-13 15:33:59 +00:00
Campbell Barton 0bed750c3a move one line color conversion functions to be inline. 2012-06-13 15:13:19 +00:00
Campbell Barton 1dec23d33a add rgb_to_luma_y(), was being done inline in many places. 2012-06-13 15:05:42 +00:00
Campbell Barton e22aa7bc38 style cleanup 2012-06-13 14:33:50 +00:00
Thomas Dinges 342fb0a19e Cycles:
* UI Tooltip fix.
2012-06-13 14:18:42 +00:00
Campbell Barton 99f7c06d7e added mask tool to recalculate handles (Ctrl+N) 2012-06-13 14:09:20 +00:00
Campbell Barton 3dd02efe2c fix for incorrectly checking for break in r47826 2012-06-13 14:01:28 +00:00
Campbell Barton 29165fc373 style cleanup 2012-06-13 13:59:46 +00:00
Campbell Barton 2e72720718 apply offset to the camera view - this works exactly like camera shift (transforms X/Y in the same space). 2012-06-13 13:23:48 +00:00
Campbell Barton 91781c76c4 framing options for camera background image: stretch/fit/crop 2012-06-13 12:58:01 +00:00
Jeroen Bakker be1b5f82ce * optimized threading
* break out with glare node
 * Added OpenCL kernels compatible with AMD still need some testing.
2012-06-13 12:34:56 +00:00
Brecht Van Lommel 4ba456d175 Cycles: first step for implementation of non-progressive sampler that handles
direct and indirect lighting differently. Rather than picking one light for each
point on the path, it now loops over all lights for direct lighting. For indirect
lighting it still picks a random light each time.

It gives control over the number of AA samples, and the number of Diffuse, Glossy,
Transmission, AO, Mesh Light, Background and Lamp samples for each AA sample.

This helps tuning render performance/noise and tends to give less noise for renders
dominated by direct lighting.

This sampling mode only works on the CPU, and still needs proper tile rendering
to show progress (will follow tommorrow or so), because each AA sample can be quite
slow now and so the delay between each update wil be too long.
2012-06-13 11:44:48 +00:00
Campbell Barton dcda234a3d update themes for new colors, patch by Brendon Murphy 2012-06-13 11:40:49 +00:00
Brecht Van Lommel 74a85df0c1 Fix cycles crash when viewport camera border goes out of view. 2012-06-13 11:25:36 +00:00
Brecht Van Lommel 5e2a9a261b Fix cycles object_flag array being allocated too big. 2012-06-13 11:25:22 +00:00
Campbell Barton 902014555a always use bicubic sampler for the scale node with the new compositor since it worked like this in the old compositor.
this ignores the sampler passed and could be done in a nicer way so left this as an ifdef so it can be easily redone.
2012-06-13 10:35:41 +00:00
Campbell Barton 6fa1af2a21 style cleanup: scale node 2012-06-13 10:03:39 +00:00
Campbell Barton c83d37ccc0 mango request
- highlight active mask layers.
- remove keyframes when all layer data is removed.
2012-06-13 08:35:50 +00:00
Campbell Barton 4cf66322f3 tint non-active mask layers grey 2012-06-13 08:20:43 +00:00
Lukas Toenne f73d5f2c44 Fix #31780, cycles nested group rendering broken. Was using the dupli object 'index' member to identify dupli objects, but this is not unique and in fact just 0 in most cases. Needs to use a simple dupli list counter instead. 2012-06-13 08:10:59 +00:00
Campbell Barton 1a625d1416 code cleanup: use const float's where possible and specify vector size. 2012-06-12 23:19:52 +00:00
Gaia Clary b0038ae499 Collada: fixed a few loops to only loop over the list of exported objects, instead of the current scene. 2012-06-12 23:19:34 +00:00
Gaia Clary c7cca0c842 fix code style cleanup 2012-06-12 23:01:43 +00:00
Campbell Barton 2e8a2f7668 style cleanup 2012-06-12 22:05:33 +00:00
Sergey Sharybin 46c95d37c6 Default value for frame offset should be 0 2012-06-12 21:29:15 +00:00
Gaia Clary 36ed4818e5 patch #31794 Collada: make exporter more robust, now uses BKE_object_relational_superset() 2012-06-12 21:25:29 +00:00
Sergey Sharybin 5dc0b35a01 Added frame offset slider to clip datablocks
In contrast to start_frame (which affects on where footage actually
starts to play and also affects on all data associated with a clip
such as motion tracking, reconstruction and so on) this slider only
affects on a way how frame number is mapping to a filename, without
touching any kind of tracking data.

The formula is:
  file_name = clip_file_name + frame_offset - (start_frame - 1)
2012-06-12 21:25:23 +00:00
Gaia Clary 92d9483075 patch #31794 Added new function BKE_object_relational_superset() 2012-06-12 21:23:51 +00:00
Sergey Sharybin aace651e51 Fix camera curve in clip editor not being remapped by a clip's start frame 2012-06-12 21:07:14 +00:00
Campbell Barton e1241030db yse BLI_math for the compositor in more places. 2012-06-12 20:04:55 +00:00
Gaia Clary 7fec7070d7 fix: Collada build warning about inconsistent usage of Camera structure/class 2012-06-12 19:37:30 +00:00
Thomas Dinges 72c668a84a Cycles:
* Add back a break, which was deleted in r47773.
2012-06-12 19:04:12 +00:00