Artemis.Engine.BodyConstructor.IgnoresCCDWith C# (CSharp) Метод

IgnoresCCDWith() публичный Метод

public IgnoresCCDWith ( string fixtureName, Category category ) : BodyConstructor
fixtureName string
category Category
Результат BodyConstructor
        public BodyConstructor IgnoresCCDWith(string fixtureName, Category category)
        {
            if (fixtureBuilderData.ContainsKey(fixtureName))
            {
                var newData = new FixtureData { IgnoreCCDWith = category };
                fixtureBuilderData.Add(fixtureName, newData);
            }
            else
                fixtureBuilderData[fixtureName].IgnoreCCDWith = category;
            return this;
        }

Same methods

BodyConstructor::IgnoresCCDWith ( Category category ) : BodyConstructor