In which order Plugins override each other?

Discuss about plugins that don't have a dedicated forum
Post Reply
Bugala
Posts: 1443
Joined: Sun Feb 14, 2010 7:11 pm

In which order Plugins override each other?

Post by Bugala »

I am looking for clarification on what happens when two plugins conflict with each other.

I am currently planning on using both avcodec, as well as RebelSDL plugins.

Idea would be that audio would work through avcodec.


RebelSDL does have an option to use Hollywoods own audio system, instead of RebelSDL version by using UseAudioAdapter=False
But how does this conflicting situation go?

As in, I could have:

Code: Select all

@REQUIRE "rebelsdl"
@REQUIRE "avcodec"

Code: Select all

@REQUIRE "rebelsdl", {UseAudioAdapter=False}
@REQUIRE "avcodec"

Code: Select all

@REQUIRE "avcodec"
@REQUIRE "rebelsdl"

Code: Select all

@REQUIRE "avcodec"
@REQUIRE "rebelsdl", {UseAudioAdapter=False}
What will happen in these cases, as in, is in any of these cases Hollywood actually using AvCodec plugin for sounds, or will RebelSDL always override it?
Post Reply