One issue is that you have nested factors (I think), so you shouldn't be looking at all the two-way interactions.
Factor 1: Do you use a material or not? (Z)
Nested Factor 2: If you used a material, what type of material (X1)
Nested Factor 3: If you used a material, what method did you use to apply the material? (X2)
Code Z as a continuous variable, Z=0 if no material is used, Z=1 if a material is used
then an appropriate model to fit would be
Y = intercept + a*Z + b*Z*X1 + c*Z*X2
so you are only look at the affect of "use a material" and the interaction of "use a material" with the material type and the method used.
A recent good reference that describes this model and how to generate experimental designs for this situation can be found here https://doi.org/10.1080/00401706.2018.1562986