Hallo,
Ich habe einen Zaun und dieser hat wenn ich diesen per Eden platziere die Interactions zum öffnen und schließen. Setzte ich dies aber per Terrain Builder gehen die Interactions nicht mehr. In den Logs steht nichts.
Die Zugangskarte hab ich natürlich im Inv.
Die Config ist wie folgt:
Code
class Land_Zaun_2:dummyclass{
scope = 2;
displayName = "Zaun2";
model ="\Blue_Police_HQ\Exterior2\zaun2\zaun2.p3d";
mapSize = 20.27;
editorCategory = "Blue_Buildings";
editorSubcategory = "Blue_Police_Objects";
class AnimationSources
{
class Zeroanimation1
{
source = "user";
animPeriod = 3;
initPhase = 0;
};
class move:Zeroanimation1{
};
};
class UserActions {
class open_move
{
displayName = "Tor Öffnen";
position = "move_trigger";
radius = 2;
onlyForplayer = "true";
condition = "(('ItemCopCard' in assignedItems player) OR ('ItemCopCard' in items player)) && this animationPhase ""move"" < 0.5";
statement = "this animate [""move"",1]";
};
class close_move
{
displayName = "Tor Schließen";
position = "move_trigger";
radius = 2;
onlyForplayer = "true";
condition ="(('ItemCopCard' in assignedItems player) OR ('ItemCopCard' in items player)) && this animationPhase ""move"" == 1";
statement = "this animate [""move"",0]";
};
};
};
Alles anzeigen
Kann mir einer sagen woran dies liegt?