Is it possible to make them oriented ?
I mean explode in one direction: upward, toward the laser hitting.
When a tank explode (a fuel tank) it is not necessarily the same in every direction. Can it be randomized ?
I dunno how CEG works, maybe that's not even possible.
Search found 8 matches
- 31 Jan 2015, 17:08
- Forum: Game Development
- Topic: Generic CEG effects suitable for any project
- Replies: 36
- Views: 6369
- 31 Jan 2015, 16:46
- Forum: Engine
- Topic: A bullet in spring
- Replies: 6
- Views: 1066
Re: A bullet in spring
So unit-unit and unit-projectile collisions can use only spheres ? no model, just a point + radius.
- 31 Jan 2015, 16:16
- Forum: Engine
- Topic: A bullet in spring
- Replies: 6
- Views: 1066
Re: A bullet in spring
Other things worrysome are the obtaining of collision volumes from spring pieces on a per model basis. And to not botch the pre-collission detection of the library. Its easy to make this ineffecient. The " pre-collission detection of the library " is a broad phase of AABB collision detect...
- 18 Jan 2015, 17:06
- Forum: Engine
- Topic: 98.0 Performance
- Replies: 21
- Views: 4802
Re: 98.0 Performance
repeated several times:
Win7
AMD Phenom II X4 965
Win7
AMD Phenom II X4 965
Code: Select all
Running 1 test case...
raw: 203 ms +-10ms
boost::mutex: 1516 ms +-20ms
boost::recursive_mutex: 2240 ms +-80ms
critical section: 492 ms +-10ms
- 21 Sep 2014, 16:31
- Forum: Feature Requests
- Topic: Updated Mapping System
- Replies: 57
- Views: 15319
Re: Updated Mapping System
I wasn't thinking to do an Earth-like representation with everything such as caves, buildings. But that if you really want to it's possible and that you can pick up ideas in geographic information systems documentation. Obviously in GIS there are a many ways (and ideas) to represent map data. Concer...
- 21 Sep 2014, 14:18
- Forum: Feature Requests
- Topic: Updated Mapping System
- Replies: 57
- Views: 15319
Re: Updated Mapping System
You can have several heights on same position, it is called Digital Elevation Model. http://en.wikipedia.org/wiki/Digital_elevation_model http://wiki.gis.com/wiki/index.php/Digital_elevation_model Here are a lot of opensource tools for map representation, just pick up the ideas. http://www.osgeo.org...
Re: CUnitSet
Ok, the id comparison was my next question.
Before asking, I did try to figure out where CUnitSet was used with a notepad++ Ctrl+F to list everything and did not saw anything except for group handling, selecting and list in Team (mainly).
I did not worked out how Sync works.
Before asking, I did try to figure out where CUnitSet was used with a notepad++ Ctrl+F to list everything and did not saw anything except for group handling, selecting and list in Team (mainly).
I did not worked out how Sync works.
CUnitSet
Hello, While reading the code, I wanted to find out how units where managed on memory side. I found out it was a container defined according to this : https://github.com/spring/spring/blob/develop/rts/Sim/Units/UnitSet.h Please tell me if I'm mistaking. Why is it a std::set ? which is an ordered con...