i wanted to give that a try.
can it be that you changed the document "TileSpecializations.cs" into "SpriteCollection.cs"? The former i couldn't find, the latter had the "reactToSprings" function in it.
i also didn't find a a line with "public state" or "Definition". For Definition, i suppose these lines with the /// are meant. are these lines displayed as help when i would created a rule und choose this method?
i made a new source code file, and named it ReactToAirStreams.
Here it is (shortened):
namespace CustomObjects
{
public class ReactToAirStreams
{
/// <summary>
/// Makes a sprite reacting to air streams.
/// </summary>
/// <remarks>Makes a sprite reacting to air streams.</remarks>
// if touching category -wind nach links-
if (this.TouchTiles(TileCategoryName.wind_nach_links))
{
// go left
this.AlterXVelocity(-0.35);
}
// if touching category -wind nach oben rechts 60
if (this.TouchTiles(TileCategoryName.wind_nach_oben_rechts_60))
{
// go right 60
this.AlterXVelocity(0.175);
// go up 60
this.AlterYVelocity(-0.3);
}
// if touching category -wind nach unten links 45-
if (this.TouchTiles(TileCategoryName.wind_nach_unten_links_45))
{
// go left 45-
this.AlterXVelocity(-0.25);
// go down 45-
this.AlterYVelocity(0.25);
}
}
}
i would like to add a parameter, like you said. but i don't know how to make it right. maybe it has to be two or three parameters.
the first parameter the user chooses should be the value which is here -0.35.
there it comes, my first problem. there are 16 air tiles for exactly 16 directions, and every tile has different angles to force the player in the specified direction.
for the user, it would be the easiest, when the function itself would calculate all angles from a given ground value.
but, if that all is too complicated, i can imagine that the values in the code shown above, are hard coded. and the only thing the user can change, is a parameter whichs divides this value through "x" (eg 2 because its a smaller object and the air streams can hold it much longer in the air).
maybe there is parameter for the "x" value, and another for the needed action (multiplying, dividing)
how would i code this?