我正在为我的游戏创建关卡并使用 Inkscape 和 SVG 作为源文件格式。我可以逐个解析对象,但不能分组,假设我只想解析组“objects_2”怎么做?
<g id="objects_1">
<object y="100" x="65" height="40" width="40" />
<object width="40" height="40" x="212" y="200" />
<object y="105" x="355" height="40" width="40" />
</g>
<g id="objects_2">
<object y="150" x="100" height="40" width="40" />
</g>