3c2ca184e3
With the ongoing scene redesign, it needs to be rewritten. However, given that it is not used widely based on support information from various bug reports and our available man power is sparse, the most reasonable thing is to drop the effect, unfortunately.
11 lines
339 B
Python
11 lines
339 B
Python
#!/usr/bin/env python3
|
|
|
|
import fileinput
|
|
|
|
for line in fileinput.input():
|
|
if not line.startswith("cubeslideEnabled="):
|
|
continue
|
|
value = line[len("cubeslideEnabled="):].strip()
|
|
if value == "true":
|
|
print("# DELETE cubeslideEnabled")
|
|
print("# DELETE slideEnabled") # make slide effect enabled, it's off now
|